@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles */
.dt-search {
    @apply float-right text-white;
}

td {
    @apply text-white; 
}

.dt-info {
    @apply text-white;
}

.justify-self-start label {
    @apply text-white; 
}

.dt-length select {
    @apply text-white;
}
.loader {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
