
/* Import fonts - Keep this */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #334155;
    padding-top: 0 !important; /* Remove padding since navbar is not fixed */
}
/* Header Specific CSS with Custom Classes - Only affecting header elements */
.acashly-header {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Custom navbar wrapper */
.acashly-navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Brand/Logo - Custom class */
.acashly-brand {
    padding: 0;
}

.acashly-brand img {
    height: 42px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.acashly-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Custom toggler button */
.acashly-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #F27540;
    transition: all 0.3s ease;
    background: transparent;
}

.acashly-toggler:focus {
    box-shadow: 0 0 0 3px rgba(242, 117, 64, 0.1);
    outline: none;
}

.acashly-toggler i {
    transition: transform 0.3s ease;
}

/* Custom nav items */
.acashly-nav {
    gap: 2px;
}

.acashly-nav-item {
    position: relative;
}

/* Custom nav links - using !important to override Bootstrap */
.acashly-nav-link {
    color: #475569 !important;
    font-weight: 500;
    padding: 0.6rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.acashly-nav-link:hover {
    color: #F27540 !important;
    background-color: rgba(242, 117, 64, 0.05) !important;
}

/* Active state for nav links */
.acashly-nav-link.active {
    color: #F27540 !important;
    background: linear-gradient(135deg, rgba(242, 117, 64, 0.1), rgba(139, 92, 246, 0.05)) !important;
    font-weight: 600;
}

/* Custom dropdown toggle */
.acashly-dropdown-toggle {
    position: relative;
    padding-right: 1.8rem !important;
}

.acashly-dropdown-toggle::after {
    content: '\f282';
    font-family: 'bootstrap-icons' !important;
    border: none;
    vertical-align: middle;
    font-size: 0.8rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Custom profile dropdown button */
.acashly-profile-btn {
    background: linear-gradient(90deg, #F6E4DE, #ebf3f3) !important;
    border: 1px solid rgba(170, 170, 170, 0.8) !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 12px;
    color: #475569 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.acashly-profile-btn:hover {
    background: linear-gradient(90deg, #F6E4DE, #ebf3f3) !important;
    border-color: rgba(242, 117, 64, 0.3) !important;
    color: #F27540 !important;
}

.acashly-profile-btn.show {
    background: linear-gradient(90deg, #F6E4DE, #ebf3f3) !important;
    border-color: rgb(242, 120, 82) !important;
    color: #F27540 !important;
}

.acashly-profile-btn img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(186, 186, 185);
    transition: all 0.3s ease;
}

.acashly-profile-btn:hover img,
.acashly-profile-btn.show img {
    border-color: #F27540;
}

/* Custom dropdown menu */
.acashly-dropdown-menu {
    border: none !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    background: white !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    min-width: 220px !important;
}

/* Custom dropdown items */
.acashly-dropdown-item {
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
    font-weight: 500;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #475569 !important;
    margin: 2px 0 !important;
}

.acashly-dropdown-item:hover {
    color: #475569 !important;
    background-color: rgba(242, 117, 64, 0.08) !important;
}

.acashly-dropdown-divider {
    margin: 0.5rem 0 !important;
    border-color: rgba(226, 232, 240, 0.6) !important;
}

/* Custom auth buttons */
.acashly-header-btns {
    display: flex;
    gap: 12px;
    margin-left: 15px;
    align-items: center;
}

.acashly-login-btn,
.acashly-register-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.95rem !important;
    border: none !important;
    cursor: pointer;
}

.acashly-login-btn {
    background: linear-gradient(135deg, #FF6B2D, #fd6536) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(242, 117, 64, 0.2) !important;
}

.acashly-login-btn:hover {
    color: white !important;
    box-shadow: 0 8px 25px rgba(242, 117, 64, 0.3) !important;
}

.acashly-register-btn {
    background: linear-gradient(135deg, #304056, #1f2937) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

.acashly-register-btn:hover {
    color: white !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .acashly-navbar {
        padding: 0.5rem 0;
    }
    
    .acashly-nav {
        gap: 5px;
    }
    
    .acashly-nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
    }
    
    .acashly-profile-btn {
        min-width: auto;
        justify-content: center;
        padding: 0.75rem 1rem !important;
    }
    
    .acashly-header-btns {
        margin: 1rem 0 0 0;
        justify-content: center;
        width: 100%;
    }
    
    .acashly-login-btn,
    .acashly-register-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ====== MINIMAL FOOTER STYLES ====== */
.site-footer {
    background: #111827;
    color: #9CA3AF;
    padding: 2rem 0 0;
    margin-top: auto;
}
.footer-links-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link-item {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0;
}

.footer-link-item:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-link-item i {
    color: #F24915;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.5;
}

.copyright-text a {
    color: #fde06f;
    text-decoration: none;
    font-weight: 600;
}

.copyright-text a:hover {
    color: #FF6B3D;
    text-decoration: underline;
}

.copyright-text .highlight {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0 0;
    }
    
    .footer-links-container {
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .footer-link-item {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .footer-links-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}
/* Responsive */

/* Simple Sidebar Design with Medium Font */
.sidebar-wrapper {
    position: relative;
}

.sidebar-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1rem;
}

.sidebar-header {
    padding: 0.5rem;
}

.sidebar-body {
    padding: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    color: #374151;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.sidebar-link:hover {
    background: rgba(242, 73, 21, 0.08);
    color: #F24915;
}

/* Upgrade Account Link with Special Animation */
.upgrade-link {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.upgrade-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-color: #FFD700;
    animation: none;
    transform: translateY(-1px);
}

.sidebar-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.sidebar-text {
    font-weight: 500;
    flex-grow: 1;
    font-size: 0.95rem;
}

.badge-count {
    background: #EF4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

.sidebar-badge-new {
    background: #10B981;
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sidebar-wrapper {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: 3px 0 15px rgba(0,0,0,0.1);
        padding: 1rem;
        transition: left 0.3s ease;
    }
    
    .sidebar-wrapper.sidebar-open {
        left: 0;
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .sidebar-link {
        padding: 0.6rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .sidebar-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Desktop - Sticky Sidebar */
@media (min-width: 992px) {
    .sidebar-wrapper {
        position: sticky;
        top: 20px;
        height: auto;
        overflow: visible;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
}
