@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Custom Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #2563EB;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Drag & Drop active state */
.drag-active {
    background-color: #EFF6FF; /* blue-50 */
    border-color: #3B82F6; /* blue-500 */
}

/* Metadata Table */
.meta-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #F3F4F6;
}
.meta-table tr:last-child td {
    border-bottom: none;
}
