*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f8fafc;
    color: #0f172a;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
iframe {
    max-width: 100%;
}

.container,
.container-fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.container {
    max-width: 80rem;
}

.row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid { display: grid; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.hidden, .d-none { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: .5rem; margin-bottom: .5rem; }
.mt-1 { margin-top: .25rem; }
.mt-3, .mt-10 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3, .mb-10 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12, .mb-60 { margin-bottom: 3rem; }
.-mt-16 { margin-top: -4rem; }

.w-full { width: 100%; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-11 { height: 2.75rem; }
.w-11 { width: 2.75rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.min-h-screen { min-height: 100vh; }
.min-h-32 { min-height: 8rem; }
.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[1400px\] { max-width: 1400px; }
.max-h-\[110px\] { max-height: 110px; }

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-12 { gap: 3rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid #e2e8f0; }
.border-t { border-top: 1px solid #e2e8f0; }
.border-b { border-bottom: 1px solid #e2e8f0; }
.border-y { border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-800 { border-color: #1e293b; }
.border-red-200 { border-color: #fecaca; }
.border-emerald-200 { border-color: #a7f3d0; }

.bg-white { background: #fff; }
.bg-slate-50 { background: #f8fafc; }
.bg-slate-100, .bg-lighter, .inner-header { background: #f1f5f9; }
.bg-slate-800 { background: #1e293b; }
.bg-slate-900 { background: #0f172a; }
.bg-slate-950 { background: #020617; }
.bg-emerald-50 { background: #ecfdf5; }
.bg-emerald-100 { background: #d1fae5; }
.bg-emerald-600 { background: #059669; }
.bg-emerald-700 { background: #047857; }
.bg-blue-100 { background: #dbeafe; }
.bg-blue-600 { background: #2563eb; }
.bg-orange-100 { background: #ffedd5; }
.bg-orange-600 { background: #ea580c; }
.bg-green-600 { background: #16a34a; }
.bg-red-50 { background: #fef2f2; }
.bg-red-600 { background: #dc2626; }
.bg-cyan-600 { background: #0891b2; }
.bg-\[\#202C45\] { background: #202c45; }

.p-2 { padding: .5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16, .pt-60, .pb-60 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: .75rem; }
.pt-16 { padding-top: 4rem; }
.pb-16 { padding-bottom: 4rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl, .title { font-size: 1.875rem; line-height: 2.25rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.leading-6 { line-height: 1.5rem; }
.tracking-wide { letter-spacing: .025em; }
.text-white { color: #fff; }
.text-black, .text-slate-950 { color: #020617; }
.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-slate-300 { color: #cbd5e1; }
.text-emerald-700, .text-success { color: #047857; }
.text-red-600, .text-danger { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-blue-700 { color: #1d4ed8; }
.text-orange-700 { color: #c2410c; }

.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .08); }
.object-contain { object-fit: contain; }
.transition { transition: all .15s ease; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hover\:bg-slate-100:hover { background: #f1f5f9; }
.hover\:bg-slate-800:hover { background: #1e293b; }
.hover\:bg-slate-900:hover { background: #0f172a; }
.hover\:bg-emerald-700:hover { background: #047857; }
.hover\:bg-red-700:hover { background: #b91c1c; }
.hover\:bg-green-700:hover { background: #15803d; }
.hover\:bg-blue-600:hover { background: #2563eb; }
.hover\:bg-red-600:hover { background: #dc2626; }
.hover\:bg-green-600:hover { background: #16a34a; }
.hover\:border-emerald-500:hover { border-color: #10b981; }
.hover\:text-emerald-400:hover { color: #34d399; }
.hover\:text-emerald-700:hover { color: #047857; }

.form-group { margin-bottom: 1.25rem; }
.control-label,
.col-form-label,
label {
    display: block;
    margin-bottom: .5rem;
    color: #334155;
    font-size: .875rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: .5rem;
    background: #fff;
    color: #0f172a;
    padding: .75rem 1rem;
    outline: 0;
}

.form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px #d1fae5;
}

textarea.form-control {
    min-height: 8rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: .5rem;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    font-weight: 900;
    cursor: pointer;
}

.btn-sm {
    padding: .45rem .75rem;
    font-size: .75rem;
}

.btn-theme-colored,
.btn-success,
.btn-primary,
.btn-dark {
    background: #059669;
    color: #fff;
}

.btn-info {
    background: #0284c7;
    color: #fff;
}

.btn-warning {
    background: #d97706;
    color: #fff;
}

.btn-secondary {
    background: #475569;
    color: #fff;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
}

.btn-block {
    width: 100%;
}

.alert {
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
}

.alert-danger {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.alert-success {
    border-color: #a7f3d0;
    background: #ecfdf5;
    color: #047857;
}

.label,
.badge {
    display: inline-flex;
    border-radius: 9999px;
    padding: .25rem .75rem;
    font-size: .75rem;
    font-weight: 700;
}

.label-success,
.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.label-danger,
.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.body-content {
    width: 100%;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
    text-align: left;
}

.table th {
    background: #f1f5f9;
    color: #334155;
    font-weight: 900;
}

.table th,
.table td {
    border-top: 1px solid #e2e8f0;
    padding: .75rem 1rem;
}

.table-bordered {
    border: 1px solid #e2e8f0;
}

.table-striped tbody tr:nth-child(even) {
    background: #f8fafc;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}

.card-body {
    padding: 1.5rem;
}

.card-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    color: #0f172a;
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
    color: #64748b;
    font-size: .875rem;
}

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:col-span-2, .col-md-2, .col-sm-2 { grid-column: span 2 / span 2; }
    .md\:col-span-3, .col-md-3, .col-sm-3, .col-lg-3 { grid-column: span 3 / span 3; }
    .md\:col-span-4, .col-md-4, .col-sm-4, .col-lg-4 { grid-column: span 4 / span 4; }
    .md\:col-span-6, .col-md-6, .col-sm-6, .col-lg-6 { grid-column: span 6 / span 6; }
    .md\:col-span-8, .col-md-8, .col-lg-8 { grid-column: span 8 / span 8; }
    .md\:col-span-9, .col-md-9, .col-lg-9 { grid-column: span 9 / span 9; }
    .md\:col-span-10, .col-md-10, .col-sm-10 { grid-column: span 10 / span 10; }
    .md\:col-span-12, .col-md-12, .col-sm-12, .col-lg-12 { grid-column: span 12 / span 12; }
    .row { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: .85fr 1.15fr; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
}
