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

/* Custom styles */
.content-card {
    @apply bg-white rounded-lg shadow-md overflow-hidden hover:shadow-xl transition-shadow cursor-pointer;
}

.content-card-image {
    @apply relative aspect-video bg-gray-200;
}

.btn-primary {
    @apply px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 disabled:opacity-50;
}

.btn-secondary {
    @apply px-4 py-2 bg-gray-200 text-gray-700 rounded-md hover:bg-gray-300;
}

