/* This file will be unnecessary when upgrading to Filament v4.0 */

/* green aliases (map to success, success defaults to Green) */
.text-green-500 { color: rgb(var(--success-500)); }
.text-green-600 { color: rgb(var(--success-600)); }
.bg-green-500 { background-color: rgb(var(--success-500)); }
.bg-green-600 { background-color: rgb(var(--success-600)); }
.border-green-500 { border-color: rgb(var(--success-500)); }
.border-green-600 { border-color: rgb(var(--success-600)); }
.focus\:border-green-500:focus { border-color: rgb(var(--success-500)); }
.focus\:ring-green-500:focus { outline: 2px solid rgb(var(--success-500)); outline-offset: 2px; }

/* blue aliases (map to info override to Sky in AdminPanelProvider) */
.text-blue-300 { color: rgb(var(--info-300)); }
.text-blue-400 { color: rgb(var(--info-400)); }
.text-blue-500 { color: rgb(var(--info-500)); }
.text-blue-600 { color: rgb(var(--info-600)); }
.text-blue-700 { color: rgb(var(--info-700)); }
.text-blue-800 { color: rgb(var(--info-800)); }
.bg-blue-500 { background-color: rgb(var(--info-500)); }
.bg-blue-600 { background-color: rgb(var(--info-600)); }
.border-blue-500 { border-color: rgb(var(--info-500)); }
.border-blue-600 { border-color: rgb(var(--info-600)); }
.focus\:border-blue-500:focus { border-color: rgb(var(--info-500)); }
.focus\:ring-blue-500:focus { outline: 2px solid rgb(var(--info-500)); outline-offset: 2px; }

/* Override Filament's panel background color */
/* apply only when NOT in dark mode */
html:not(.dark) body.fi-body.fi-panel-admin {
    background-color: #e5e7eb !important; /* Tailwind gray-200 */
  }
