/* Button Color Patch - Ensures orange button colors are always available */
/* This file patches missing Tailwind classes until Tailwind regenerates site.css */

.bg-orange-600 {
    background-color: #ea580c !important;
}

.hover\:bg-orange-700:hover {
    background-color: #c2410c !important;
}

.focus\:ring-orange-300:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(253 186 116 / 0.5);
    box-shadow: 0 0 0 3px var(--tw-ring-color);
}

.dark .dark\:focus\:ring-orange-800:focus {
    --tw-ring-color: rgb(154 52 18 / 0.5);
}

/* Also ensure indigo colors are available */
.bg-indigo-600 {
    background-color: #4f46e5 !important;
}

.hover\:bg-indigo-700:hover {
    background-color: #4338ca !important;
}

.focus\:ring-indigo-300:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(165 180 252 / 0.5);
    box-shadow: 0 0 0 3px var(--tw-ring-color);
}
