.text-red-primary {
    color: #b91c1c;
}

.bg-red-primary {
    background-color: #b91c1c;
}

.bg-red-pastel {
    background-color: #fef2f2;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 28, 28, 0.1);
}

.gradient-header {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f87171;
    border-radius: 8px;
}
