@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.pgt-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    text-align: center;
}

.pgt-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.pgt-options label {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.pgt-options input[type="range"] {
    width: 100%;
}

.pgt-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.pgt-result input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.pgt-result button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background: #0073aa;
    color: #fff;
    cursor: pointer;
}

.pgt-result button:hover {
    background: #005177;
}

#pgt-copy-message {
    margin-top: 10px;
    color: green;
    font-size: 14px;
    display: none; /* Hidden by default */
}