﻿.rcs-full-width {
    width: 100% !important;
}
.salvation-army-font{
    font-family: 'sans-serif';
    font-size: 2rem;
}
/*
.nav-tabs > li > a {
    border-color: red;
}

.nav-item > :hover {
    background-color: ghostwhite;
}

.nav-tabs > li > .nav-link.active {
    border-color: black;
    background-color: floralwhite
}*/

.toast-custom-notyf {
    max-width: 500em !important;

}

/* ========================================
   User Profile Dropdown Styles
   ======================================== */

/* Align navbar icons with user profile */
.navbar-align {
    align-items: center !important;
}

.navbar-align .nav-item {
    display: flex;
    align-items: center;
}

.navbar-align .nav-icon {
    display: flex !important;
    align-items: center;
    height: 36px;
}

.navbar-align .nav-icon.d-lg-block {
    display: none !important;
}

@media (min-width: 992px) {
    .navbar-align .nav-icon.d-lg-block {
        display: flex !important;
    }
}

/* Avatar circle in navbar */
.user-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.user-avatar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.user-avatar-lg {
    width: 50px;
    height: 50px;
}

.user-initials {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-avatar-lg .user-initials {
    font-size: 18px;
}

/* Dropdown toggle styling */
.user-profile-dropdown .dropdown-toggle {
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    transition: background-color 0.2s ease;
}

.user-profile-dropdown .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.user-profile-dropdown .dropdown-toggle::after {
    display: none; /* Hide default Bootstrap caret */
}

.user-name-text {
    font-weight: 500;
    color: var(--bs-body-color);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.user-profile-dropdown.show .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown menu styling */
.user-dropdown-menu {
    min-width: 280px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header section */
.dropdown-header-section {
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.user-fullname {
    font-size: 16px;
    color: var(--bs-body-color);
}

.user-client {
    margin-top: 2px;
}

/* Menu items */
.user-dropdown-menu .dropdown-item {
    padding: 0.6rem 1.25rem;
    transition: all 0.15s ease;
    border-radius: 0;
}

.user-dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Logout item special styling */
.logout-item:hover {
    background-color: #fff5f5 !important;
}

/* Dark mode support */
[data-theme="dark"] .user-profile-dropdown .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .dropdown-header-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

[data-theme="dark"] .user-dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .logout-item:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}
