body {
    font-family: 'Poppins', sans-serif;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #e6683c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bc1888;
}

/* Progress Ring Animation */
#progress-circle {
    transition: stroke-dashoffset 0.05s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}

.rotate-180 { transform: rotate(180deg); transition: transform 0.3s; }
.accordion-content { transition: max-height 0.3s ease-in-out; }

/* Modal animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#confirmationModal {
    animation: fadeIn 0.3s ease-out;
}

#modalContent {
    animation: slideUp 0.3s ease-out;
}

/* Ensure modal is above everything */
.z-50 {
    z-index: 50;
}

/* Modal backdrop blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Smooth transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}