.pg-container {
    font-family: Arial, sans-serif;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
}

.pg-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #444;
}

.pg-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.pg-controls label {
    font-size: 14px;
}

.pg-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.pg-btn:hover {
    background: #005f87;
}

.pg-results {
    margin-top: 15px;
    font-family: monospace;
    font-size: 15px;
}

.pg-results div {
    padding: 4px;
    background: #fff;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.pg-results div:hover {
    background: #f0f0f0;
}

.pg-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    font-size: 12px;
    color: #666;
}

.pg-footer a {
    color: #0073aa;
    text-decoration: none;
}

.pg-footer a:hover {
    text-decoration: underline;
}
