/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: #c6c5d4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #767683;
}

/* Custom styles for animations */
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.2s ease-out forwards;
}

/* Glow effects and modern transitions */
.transition-all-200 {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 10px 25px -5px rgba(26, 35, 126, 0.15), 0 8px 10px -6px rgba(26, 35, 126, 0.15);
}

/* Glassmorphism utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Checkbox customization */
input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

/* Active tab indicators */
.tab-active {
    background-color: var(--color-primary, #000666);
    color: white !important;
}

/* Sticky styling fix for overlapping navigation */
header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
