/* Account Management - Bootstrap-focused styling without animations */

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Card enhancements */
.card {
    border: none;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-top-4 {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

/* Navigation styling */
.nav-link {
    color: var(--bs-body-color);
    text-decoration: none;
    border: 1px solid transparent;
}

.nav-link:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.nav-link.active {
    background-color: var(--bs-primary);
    color: white;
}

/* Status messages */
.alert {
    border: none;
}

/* Button styling */
.btn {
    border-radius: 0.5rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* Background colors */
.bg-success.bg-opacity-10 {
    background-color: rgba(var(--bs-success-rgb), 0.1) !important;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

/* Table styling */
.table-hover tbody tr:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .card {
        margin: 0.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--bs-border-color) !important;
    }
    
    .btn-primary {
        border: 2px solid var(--bs-primary) !important;
    }
    
    .nav-link.active {
        border: 2px solid var(--bs-primary) !important;
    }
}

/* Focus visible for accessibility */
.btn:focus-visible,
.form-control:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}