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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

table {
    width: 100%;
}

code {
    padding: 0.125rem 0.375rem;
    border-radius: 0.375rem;
    background: #e2e8f0;
}

.min-h-screen {
    min-height: 100vh;
}

.min-w-full,
.w-full {
    width: 100%;
}

.min-w-full {
    min-width: 100%;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border {
    border: 1px solid #cbd5e1;
}

.border-collapse {
    border-collapse: collapse;
}

.border-slate-300 {
    border-color: #cbd5e1;
}

.border-emerald-200 {
    border-color: #a7f3d0;
}

.border-rose-200 {
    border-color: #fecdd3;
}

.bg-white {
    background: #ffffff;
}

.bg-slate-50 {
    background: #f8fafc;
}

.bg-slate-100 {
    background: #f1f5f9;
}

.bg-slate-800 {
    background: #1e293b;
}

.bg-sky-100 {
    background: #e0f2fe;
}

.bg-sky-700 {
    background: #0369a1;
}

.bg-orange-100 {
    background: #ffedd5;
}

.bg-emerald-50 {
    background: #ecfdf5;
}

.bg-rose-50 {
    background: #fff1f2;
}

.bg-white\/10 {
    background: rgba(255, 255, 255, 0.1);
}

.text-white {
    color: #ffffff;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-sky-700 {
    color: #0369a1;
}

.text-emerald-800 {
    color: #065f46;
}

.text-rose-800 {
    color: #9f1239;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.list-disc {
    list-style-type: disc;
}

.shadow {
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.12);
}

.hover\:bg-slate-700:hover {
    background: #334155;
}

.hover\:bg-white\/20:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hover\:bg-orange-200:hover {
    background: #fed7aa;
}

.hover\:bg-sky-200:hover {
    background: #bae6fd;
}

input,
select {
    min-height: 2.5rem;
    border: 1px solid #cbd5e1;
    background: #ffffff;
}

button,
a.rounded-lg,
a.rounded-xl {
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

thead .bg-slate-100,
tr.bg-slate-100,
thead tr {
    background: #f1f5f9;
}

th,
td {
    vertical-align: middle;
}

nav[role="navigation"] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

nav[role="navigation"] > div:first-child {
    display: none;
}

nav[role="navigation"] svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:justify-between {
        justify-content: space-between;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:col-span-4 {
        grid-column: span 4 / span 4;
    }
}
