.custom-shadow {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.generated-password {
    font-family: monospace;
    letter-spacing: 1px;
}

.strength-bar {
    height: 4px;
    transition: width 0.3s ease;
}

.policy-card {
    transition: transform 0.2s ease;
}

.policy-card:hover {
    transform: translateY(-2px);
}

.copy-button {
    transition: all 0.2s ease;
}

.copy-button:hover {
    background-color: #2563eb;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

/* Form Styles */
input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #2563eb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #1d4ed8;
}

input[type="checkbox"] {
    cursor: pointer;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* History Styles */
#passwordHistory input[type="text"] {
    transition: all 0.2s ease;
}

#passwordHistory input[type="text"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

#passwordHistory button {
    transition: all 0.2s ease;
}

#passwordHistory .delete-password {
    font-size: 1.25rem;
    line-height: 1;
}