/* Site Theme Colors */
:root {
    --site-primary: #1976d2;
    --site-secondary: #64748b;
    --site-accent: #fb923c;
    --site-success: #10b981;
    --site-warning: #f59e0b;
    --site-error: #ef4444;
}

/* Site Button Styles */
.btn-primary, .bg-cyan-400, .bg-cyan-500 {
    background-color: var(--site-primary) !important;
}

.btn-primary:hover, .hover\:bg-cyan-500:hover {
    background-color: color-mix(in srgb, var(--site-primary) 85%, black) !important;
}

.text-cyan-500, .text-cyan-400 {
    color: var(--site-primary) !important;
}

.border-cyan-400, .border-cyan-500 {
    border-color: var(--site-primary) !important;
}

.bg-green-500 {
    background-color: var(--site-success) !important;
}

.bg-red-500 {
    background-color: var(--site-error) !important;
}

.bg-yellow-500 {
    background-color: var(--site-warning) !important;
}

/* Focus states */
.focus\:ring-cyan-500:focus {
    --tw-ring-color: var(--site-primary) !important;
}

/* Hover states */
.hover\:text-cyan-500:hover {
    color: var(--site-primary) !important;
}

.hover\:border-cyan-300:hover {
    border-color: color-mix(in srgb, var(--site-primary) 70%, white) !important;
}