.pwd-generator-container {
    max-width: 500px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pwd-generator-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pwd-generator-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.pwd-output-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.pwd-output {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    font-family: monospace;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
}

.pwd-btn {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.pwd-btn-copy {
    background: #0073aa;
    color: white;
}

.pwd-btn-copy:hover {
    background: #005a87;
}

.pwd-btn-copy:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
    filter: blur(2px);
}

.pwd-btn-generate {
    width: 100%;
    background: #46b450;
    color: white;
    font-weight: bold;
    margin-top: 15px;
}

.pwd-btn-generate:hover {
    background: #3a9642;
}

.pwd-options {
    margin: 15px 0;
}

.pwd-option {
    margin: 12px 0;
}

.pwd-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.pwd-option input[type="checkbox"] {
    margin-right: 8px;
}

.pwd-option input[type="range"] {
    width: 100%;
    margin-top: 5px;
}

.pwd-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.pwd-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pwd-strength {
    margin-top: 15px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
    color: white;
}

.pwd-strength.show {
    display: block !important;
}

.pwd-strength-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
    font-weight: 600;
}

.pwd-strength-time {
    font-size: 18px;
    font-weight: bold;
}

.pwd-strength-rating {
    font-size: 14px;
    margin-top: 5px;
}

.pwd-custom-option {
    display: block;
}

.pwd-custom-input {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
}

.pwd-custom-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.pwd-custom-input:enabled {
    background-color: white;
}