.whiskey-password-generator {
    margin: 20px 0;
}

.password-settings {
    padding: 20px;
    margin-bottom: 20px;
}

.setting-group {
    margin-bottom: 15px;
}

.setting-group:last-child {
    margin-bottom: 0;
}

.setting-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

#password-length-display {
    font-weight: 600;
}

.setting-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
}

.setting-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.setting-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.checkbox-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.password-display {
    padding: 20px;
    margin-bottom: 20px;
}

.password-output {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.password-output input {
    flex: 1;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-family: monospace;
    word-break: break-all;
    transition: border-color 0.2s;
}

.password-output input:focus {
    outline: none;
}

#copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    min-width: 45px;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

#copy-button svg {
    width: 20px;
    height: 20px;
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-label {
    font-weight: 500;
    min-width: 70px;
}

.strength-meter {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 100%;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.strength-text {
    font-size: 13px;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

#generate-button {
    display: block;
    margin-bottom: 25px;
}

/* Responsive design */
@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
    }

    .password-output {
        flex-direction: column;
    }

    #copy-button {
        width: 100%;
        min-width: unset;
    }

    .password-strength {
        flex-direction: column;
        align-items: flex-start;
    }

    .strength-text {
        text-align: left;
        min-width: unset;
    }
}
