/* Tailwind CSS - Production Build */
/* This file should be replaced with a compiled Tailwind CSS build */

/* For now, we'll include basic Tailwind utilities */
@import url('https://cdn.tailwindcss.com/3.4.0/tailwind.min.css');

/* Custom theme configuration */
:root {
    --fc-porto-blue: #004B9B;
    --fc-porto-blue-hover: #003D7A;
    --fc-porto-secondary: #0066CC;
    --fc-porto-gold: #FFD700;
    --fc-porto-silver: #C0C0C0;
}

/* Custom classes for FC Porto theme */
.fc-porto-blue { color: var(--fc-porto-blue); }
.fc-porto-blue-bg { background-color: var(--fc-porto-blue); }
.fc-porto-blue-hover:hover { background-color: var(--fc-porto-blue-hover); }
.fc-porto-secondary { color: var(--fc-porto-secondary); }
.fc-porto-gold { color: var(--fc-porto-gold); }
.fc-porto-silver { color: var(--fc-porto-silver); }

/* Responsive utilities */
@media (max-width: 640px) {
    .mobile-hidden { display: none; }
    .mobile-full { width: 100%; }
}


/* Print styles */
@media print {
    .print-hidden { display: none !important; }
    .print-visible { display: block !important; }
}
