/* Modern Sidebar Enhancements - 2026 */

/* Sidebar container - subtle gradient background */
.sidebar .sidebar-inner {
    background: linear-gradient(180deg, #f9fbff 0%, #f0f7ff 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05) !important;
    padding: 15px 8px !important;
    border: 1px solid rgba(59, 130, 246, 0.08) !important;
}

/* Normal sidebar links */
.sidebar .sidebar-inner a {
    padding: 10px 12px !important;
    margin-bottom: 4px !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    border-radius: 10px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

/* Icon styling */
.sidebar .sidebar-inner a i {
    color: #64748b !important;
    font-size: 15px !important;
    margin-right: 12px !important;
    transition: all 0.25s ease !important;
}

/* Hover effect - smooth slide */
.sidebar .sidebar-inner a:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%) !important;
    color: #1e3a8a !important;
    transform: translateX(2px) !important;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.1) !important;
}

.sidebar .sidebar-inner a:hover i {
    color: #3b82f6 !important;
    transform: scale(1.05) !important;
}

/* Active item - beautiful highlight */
.sidebar .sidebar-inner a.active {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
    transform: translateX(0) !important;
}

.sidebar .sidebar-inner a.active i {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Remove old right-side vertical bar indicator */
.sidebar .sidebar-inner a.active:before,
.sidebar .sidebar-inner a:hover:before {
    display: none !important;
}

/* Scrollbar polish */
.sidebar-inner::-webkit-scrollbar {
    width: 5px;
}

.sidebar-inner::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 10px;
}

.sidebar-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* Modern Footer Styling - 2026 */
.footer-company {
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%) !important;
    border-top: 1px solid rgba(59, 130, 246, 0.15) !important;
    padding: 18px 30px !important;
    margin-top: 30px !important;
    box-shadow: 0 -2px 8px rgba(59, 130, 246, 0.04) !important;
}

.footer-company p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #64748b !important;
    font-weight: 500 !important;
    text-align: center !important;
    letter-spacing: 0.2px !important;
}

.footer-company p a {
    color: #3b82f6 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    margin: 0 8px !important;
    position: relative !important;
}

.footer-company p a:hover {
    color: #1e3a8a !important;
    text-decoration: none !important;
}

.footer-company p a:hover::after {
    content: "" !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: #10b981 !important;
    border-radius: 2px !important;
}

