 /* Custom styles */
 .bg-gradient-blue {
     background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
 }
 .text-shadow {
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }
 .card-transition {
     transition: all 0.3s ease;
 }
 .app-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05) !important;
 }
 .sidebar-link {
     border-radius: 0.5rem;
     transition: background-color 0.2s;
 }
 .sidebar-link:hover {
     background-color: rgba(0,0,0,0.05);
 }
 .sidebar-link.active {
     background-color: #2563eb !important;
     color: #fff !important;
 }
 [data-bs-theme="dark"] .sidebar-link:hover {
     background-color: rgba(255,255,255,0.1);
 }
 [data-bs-theme="dark"] .sidebar-link.active {
     background-color: #2563eb !important;
 }
 [data-bs-theme="dark"] .bg-white {
     background-color: var(--bs-tertiary-bg) !important;
 }
 .line-clamp-2 {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }
 .scrollbar-hide::-webkit-scrollbar {
     display: none;
 }
 .scrollbar-hide {
     -ms-overflow-style: none;
     scrollbar-width: none;
 }
 .opacity-05 { opacity: 0.05; }
 .size-8 { width: 2rem; height: 2rem; }
 .size-10 { width: 2.5rem; height: 2.5rem; }
 .size-6 { width: 1.5rem; height: 1.5rem; }
 .icon-5 { width: 1.25rem; text-align: center; }
 .app-dropdown { min-width: 9rem; }
 .stat-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
 .bg-opacity-10 { --bs-bg-opacity: 0.1; }
 .hover-bg-light:hover { background-color: rgba(0,0,0,0.05); }
 [data-bs-theme="dark"] .hover-bg-light:hover { background-color: rgba(255,255,255,0.1); }
