.padlokr-password-generator-wrapper {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.padlokr-password-generator-controls {
    margin-bottom: 15px;
}

.control-group {
    margin-bottom: 12px;
}

.control-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.control-group input[type="range"] {
    width: 100%;
    margin-top: 8px;
}

.control-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

#padlokr-length-value {
    display: inline-block;
    min-width: 30px;
    padding: 2px 8px;
    background: #2271b1;
    color: white;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
}

.padlokr-password-display {
    margin: 15px 0;
}

#padlokr-password-output {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    border: 2px solid #2271b1;
    border-radius: 4px;
    background: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.padlokr-password-strength {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

#padlokr-strength-indicator {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
}

#padlokr-strength-indicator.weak {
    background: #f8d7da;
    color: #721c24;
}

#padlokr-strength-indicator.medium {
    background: #fff3cd;
    color: #856404;
}

#padlokr-strength-indicator.strong {
    background: #d1ecf1;
    color: #0c5460;
}

#padlokr-strength-indicator.very-strong {
    background: #d4edda;
    color: #155724;
}

.padlokr-password-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.padlokr-password-actions button {
    flex: 1;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

#padlokr-password-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

#padlokr-password-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#padlokr-password-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}