/* WP User Management - Bootstrap Enhanced Styles */
.wum-form-wrapper {
    padding: 0;
}

.wum-form .form-control:focus {
    border-color: #0d6ef2;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.wum-form .input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.wum-form .input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

/* Card animations */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Nav pills customization */
.nav-pills .nav-link {
    color: #6c757d;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6ef2;
}

.nav-pills .nav-link.active {
    background-color: #0d6ef2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.nav-pills .nav-link i {
    font-size: 1.1rem;
}

/* Alert animations */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button loading states */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form check customization */
.form-check-input:checked {
    background-color: #0d6ef2;
    border-color: #0d6ef2;
}

.form-check-label a {
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Icon styling */
.bi {
    vertical-align: -2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
    
    .nav-pills .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

/* Success and error states for messages */
.wum-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 4px solid #198754;
}

.wum-error {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

/* Spinner animation */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
}

/* Verification page styling */
.verification-success {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Password strength indicator (optional) */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background: #dc3545;
    width: 25%;
}

.password-strength.medium {
    background: #ffc107;
    width: 50%;
}

.password-strength.strong {
    background: #198754;
    width: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0d6ef2;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}