@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Utility classes */
.shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.shadow-hard {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Table styles */
table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1rem;
}
th {
    position: sticky;
    top: 0;
    background-color: #f9fafb;
    z-index: 10;
}

td, th {
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

tr:nth-child(even) {
    background-color: #f9fafb;
}

tr:hover {
    background-color: #f3f4f6;
}

/* Modal transitions */
.modal-enter {
    animation: fadeIn 0.3s ease-out forwards;
}

.modal-content-enter {
    animation: slideIn 0.3s ease-out forwards;
}

/* Custom card colors */
.card-blue {
    border-left: 4px solid #3b82f6;
}

.card-green {
    border-left: 4px solid #10b981;
}

.card-yellow {
    border-left: 4px solid #f59e0b;
}

.card-orange {
    border-left: 4px solid #f97316;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    td, th {
        padding: 8px 12px;
    }
}

/* Loading dots animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.loading-dot {
    animation: bounce 1.5s infinite ease-in-out;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-dot:nth-child(4) {
    animation-delay: 0.6s;
}