/* Import Tailwind */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css';

/* Additional custom styles */
[x-cloak] { 
    display: none !important; 
}

/* Dark mode styles */
.bg-gray-900 {
    background-color: #111827;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

.text-indigo-400 {
    color: #818cf8;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.border-gray-800 {
    border-color: #1f2937;
} 