/* === UTILITY CLASSES === */
.mt-12 {
    margin-top: 12px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.pb-8 {
    padding-bottom: 8px !important;
}

.p-24 {
    padding: 24px !important;
}

.p-48 {
    padding: 48px !important;
}

.p-64 {
    padding: 64px !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-md {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.25rem !important;
}

.text-white {
    color: white !important;
}

.text-white-85 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-primary {
    color: var(--medical-blue) !important;
}

.text-success {
    color: var(--success-green) !important;
}

.text-danger {
    color: var(--danger-red) !important;
}

.text-warning {
    color: var(--warning-amber) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100% !important;
}

.mw-200 {
    max-width: 200px !important;
}

.min-w-180 {
    min-width: 180px !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-12 {
    gap: 12px !important;
}

.gap-16 {
    gap: 16px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-32 {
    gap: 32px !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.align-center {
    align-items: center !important;
}

.align-start {
    align-items: start !important;
}

.col-span-full {
    grid-column: 1 / -1 !important;
}

.border-bottom-sm {
    border-bottom: 1.5px solid var(--border) !important;
}

.nav-list {
    list-style: none !important;
    padding: 0 !important;
}