/* Hosting theme - Light mode with Orange accents */
:root {
    --bg-light: #f8fafc;
    --bg-lighter: #ffffff;
    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-dark: rgba(15, 23, 42, 0.12);
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    /* Sidebar: fixed column width; change here if you add wider labels */
    --app-sidebar-width: 260px;
    --app-sidebar-surface: linear-gradient(180deg, #f1f5f9 0%, #ffffff 42%, #f8fafc 100%);
    --app-sidebar-border: rgba(15, 23, 42, 0.11);
    --app-sidebar-border-strong: rgba(15, 23, 42, 0.16);
    --app-sidebar-accent: linear-gradient(180deg, #fb923c 0%, #f97316 42%, #ea580c 88%, #c2410c 100%);
}

* {
    color: var(--text-dark);
}

body {
    background: var(--bg-light) !important;
    color: var(--text-dark) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: radial-gradient(ellipse at 70% 30%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

/* App shell: sidebar + main */
.app-shell {
    flex: 1;
    display: flex;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.app-sidebar {
    flex: 0 0 var(--app-sidebar-width);
    width: var(--app-sidebar-width);
    min-width: var(--app-sidebar-width);
    max-width: var(--app-sidebar-width);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    align-self: flex-start;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0 14px 14px 0;
    background: var(--app-sidebar-surface);
    border: 1px solid var(--app-sidebar-border);
    border-left: none;
    box-shadow:
        10px 0 40px rgba(15, 23, 42, 0.07),
        6px 0 18px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Strong orange accent rail — reads as a deliberate “dock” */
.app-sidebar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--app-sidebar-accent);
    pointer-events: none;
    z-index: 2;
    box-shadow: 2px 0 8px rgba(234, 88, 12, 0.35);
}

.app-sidebar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    padding: 1.1rem 0.95rem 1.1rem 1.1rem;
}

.app-sidebar-brand {
    display: block;
    color: var(--text-dark) !important;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
    text-decoration: none;
    padding: 0.5rem 0.65rem 1rem;
    margin: -0.15rem -0.35rem 0.35rem;
    border-radius: 10px;
    border-bottom: 1px solid var(--app-sidebar-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 250, 252, 0.35) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.app-sidebar-brand:hover {
    color: var(--accent-orange) !important;
    background: rgba(249, 115, 22, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 0 0 1px rgba(249, 115, 22, 0.12);
}

.app-sidebar-nav {
    flex: 0 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0.2rem 1rem 0;
    min-height: 0;
    max-height: calc(100vh - 12rem);
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.5) transparent;
}

.app-sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.app-sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 10px;
}

.app-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.58rem 0.7rem;
    border-radius: 10px;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.95;
    border: 1px solid transparent;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.app-sidebar-link__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.88;
    width: 1.25rem;
    text-align: center;
}

.app-sidebar-link:hover .app-sidebar-link__icon,
.app-sidebar-link.active .app-sidebar-link__icon {
    opacity: 1;
}

.app-sidebar-link:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.18);
    color: var(--accent-orange) !important;
    opacity: 1;
    box-shadow: 0 1px 3px rgba(249, 115, 22, 0.12);
    transform: translateX(1px);
}

.app-sidebar-link.active {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0.06) 100%);
    border-color: rgba(249, 115, 22, 0.28);
    color: var(--accent-orange) !important;
    font-weight: 700 !important;
    opacity: 1;
    box-shadow:
        inset 3px 0 0 var(--accent-orange),
        0 1px 4px rgba(249, 115, 22, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .app-sidebar-link:hover {
        transform: none;
    }
}

.app-sidebar-footer {
    flex-shrink: 0;
    padding-top: 0.85rem;
    margin-top: auto;
    border-top: 1px solid var(--app-sidebar-border);
    background: linear-gradient(180deg, transparent 0%, rgba(241, 245, 249, 0.65) 100%);
    margin-left: -0.15rem;
    margin-right: -0.15rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    padding-bottom: 0.15rem;
    border-radius: 0 0 10px 10px;
}

/* Outline action buttons — sidebar logout, daybook save, daybook table actions */
.app-sidebar-logout,
.daybook-save-record,
.daybook-table-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.625rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid var(--border-dark) !important;
    color: var(--text-dark) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none !important;
}

/* Daybook project modal — party picker */
.daybook-project-party-combo {
    position: relative;
    z-index: 6;
}

.daybook-project-party-listbox {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 12;
    max-height: min(240px, 42vh);
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.daybook-project-party-listbox button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.55rem 1rem;
    border: 0;
    background: transparent;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.4;
}

.daybook-project-party-listbox button:hover,
.daybook-project-party-listbox button:focus {
    background: rgba(249, 115, 22, 0.12);
    outline: none;
}

.daybook-project-party-listbox .daybook-project-party-empty {
    padding: 0.65rem 1rem;
    color: #64748b;
    font-size: 0.9375rem;
}

.daybook-project-party-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.daybook-project-party-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.daybook-project-party-chip:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.45);
    color: var(--accent-orange);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.12);
}

.daybook-project-party-chip:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Daybook heading date controls (calendar-like) */
.daybook-date-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex: 0 0 auto;
}

.daybook-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a !important;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.daybook-nav-btn i {
    font-size: 1.15rem;
    line-height: 1;
}

.daybook-nav-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.45);
    color: var(--accent-orange) !important;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.12);
    transform: translateY(-1px);
}

.daybook-nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.daybook-nav-btn:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.daybook-date-picker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.85rem;
    height: 2.625rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
}

.daybook-date-picker {
    cursor: pointer;
}

.daybook-date-picker i {
    color: #64748b;
    font-size: 1rem;
}

.daybook-date-input {
    height: 2.2rem;
    border: none;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    width: 9.75rem; /* keep controls from “jumping” */
    min-width: 9.75rem;
}

.daybook-page .daybook-date-chip {
    flex: 0 0 auto;
    min-width: 13.75rem; /* keep layout stable when weekday length changes */
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.daybook-date-input[readonly] {
    cursor: pointer;
}

.daybook-date-input::-webkit-calendar-picker-indicator {
    display: none;
    opacity: 0;
}

.daybook-date-input:focus-visible {
    outline: none;
}

.daybook-date-picker:focus-within {
    border-color: rgba(249, 115, 22, 0.65);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

/* Flatpickr (Daybook calendar popup) */
.flatpickr-calendar {
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.18) !important;
    overflow: hidden;
    font-family: inherit;
}

.flatpickr-months {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding: 0.35rem 0.25rem;
}

.flatpickr-current-month {
    font-weight: 800;
    color: #0f172a;
}

.flatpickr-weekdays {
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.flatpickr-weekday {
    color: #64748b !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.66rem !important;
}

.flatpickr-day {
    border-radius: 12px !important;
}

.flatpickr-day:hover {
    background: rgba(249, 115, 22, 0.12) !important;
    border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 35%, #ea580c 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
}

.flatpickr-day.today:not(.selected) {
    border-color: rgba(249, 115, 22, 0.55) !important;
}

.flatpickr-day:focus-visible {
    outline: 2px solid rgba(249, 115, 22, 0.65) !important;
    outline-offset: 2px;
}

@media (max-width: 576px) {
    .daybook-date-nav {
        width: 100%;
        justify-content: space-between;
        border-radius: 16px;
    }
    .daybook-date-input {
        width: 8.25rem;
        min-width: 8.25rem;
    }

    .daybook-page .daybook-date-chip {
        min-width: 0;
        width: 100%;
    }
}

/* Compact variant for daybook Records table row actions */
.daybook-table-action-btn {
    min-height: 2.125rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.055em;
    gap: 0.35rem;
}

.app-sidebar-logout:hover,
.daybook-save-record:hover,
.daybook-table-action-btn:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    border-color: rgba(249, 115, 22, 0.45) !important;
    color: var(--accent-orange) !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}

.app-sidebar-logout:focus-visible,
.daybook-save-record:focus-visible,
.daybook-table-action-btn:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.app-sidebar-logout__icon {
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.92;
}

.app-sidebar-logout:hover .app-sidebar-logout__icon,
.daybook-save-record:hover .app-sidebar-logout__icon {
    opacity: 1;
}

.daybook-save-record__idle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.daybook-save-record__busy {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.daybook-save-record.is-loading .daybook-save-record__idle {
    display: none;
}

.daybook-save-record.is-loading .daybook-save-record__busy {
    display: inline-flex;
}

.daybook-save-record.is-loading {
    pointer-events: none;
    opacity: 0.94;
}

#daybookCreateProjectModal .modal-footer .daybook-save-record {
    min-width: 9.75rem;
    justify-content: center;
}

.daybook-save-spinner {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #f97316,
        #fbbf24,
        #ea580c,
        #fb923c,
        #f59e0b,
        #f97316
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
    animation: daybook-save-spin 0.72s linear infinite;
}

@keyframes daybook-save-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .daybook-save-spinner {
        animation: none;
        opacity: 0.88;
    }
}

.app-main {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.app-sidebar-toggle {
    color: var(--text-dark) !important;
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-radius: 8px;
}

.app-sidebar-toggle:hover {
    background: rgba(15, 23, 42, 0.06);
}

.app-sidebar-toggle-icon {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    box-shadow: 0 6px 0 var(--text-dark), 0 -6px 0 var(--text-dark);
}

.app-sidebar-backdrop {
    display: none;
    position: fixed;
    z-index: 1040;
    top: var(--app-topbar-height, 2.75rem);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.45);
    border: none;
    padding: 0;
    margin: 0;
}

.app-sidebar-backdrop.is-visible {
    display: block;
}

body.app-sidebar-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        position: fixed;
        z-index: 1050;
        top: var(--app-topbar-height, 2.75rem);
        left: 0;
        bottom: 0;
        flex: none;
        width: min(288px, 88vw);
        min-width: unset;
        max-width: min(288px, 88vw);
        align-self: stretch;
        transform: translateX(-100%);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        box-shadow: none;
    }

    .app-sidebar-inner {
        flex: 1;
        min-height: 0;
    }

    .app-sidebar-nav {
        flex: 1;
        max-height: none;
    }

    .app-sidebar.app-sidebar--open {
        transform: translateX(0);
        box-shadow:
            12px 0 48px rgba(15, 23, 42, 0.18),
            6px 0 24px rgba(234, 88, 12, 0.08);
    }

    .app-main {
        width: 100%;
    }
}

/* Modals must live outside <main> (see @stack('modals') in layout). If nested inside main,
   Bootstrap’s body-level backdrop (z-index 1050) stacks above main (z-index 1) and blocks clicks. */
.modal {
    z-index: 1055;
}
.modal-backdrop {
    z-index: 1050;
}

/* Top bar */
.top-bar {
    background: var(--bg-lighter);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-dark);
    flex-shrink: 0;
    position: relative;
    z-index: 1060;
}

/* Primary button - orange */
.btn-pink {
    background: var(--accent-orange) !important;
    border: none !important;
    color: #ffffff !important;
}

.btn-pink:hover {
    background: var(--accent-orange-hover) !important;
    color: #ffffff !important;
}

/* Secondary button - outline */
.btn-outline-theme {
    background: transparent !important;
    border: 1px solid var(--text-dark) !important;
    color: var(--text-dark) !important;
}

.btn-outline-theme:hover {
    background: var(--text-dark) !important;
    color: var(--bg-lighter) !important;
}

/* Card */
.card-theme,
.card-theme .card-body {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-dark) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card-theme .card-body {
    border: none;
}

.card-theme .table,
.card-theme .table th,
.card-theme .table td {
    background: transparent !important;
    color: var(--text-dark) !important;
}

/* Table */
.table-theme {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-dark);
    --bs-table-border-color: var(--border-dark);
}

.table-theme,
.table-theme thead,
.table-theme tbody,
.table-theme th,
.table-theme td,
.table-theme tr {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-dark) !important;
    border-color: var(--border-dark) !important;
}

.table-theme thead th {
    font-weight: 600;
}

.table-theme tbody tr:hover td {
    background: rgba(15, 23, 42, 0.03) !important;
}

.table-theme.table-striped tbody tr:nth-of-type(odd) td {
    background: rgba(15, 23, 42, 0.02) !important;
}

.table-theme.table-striped tbody tr:nth-of-type(odd):hover td {
    background: rgba(15, 23, 42, 0.05) !important;
}

/* Form controls */
.form-control-theme,
.form-select-theme {
    background: var(--input-bg) !important;
    border: 1px solid var(--border-dark) !important;
    color: var(--text-dark) !important;
}

.form-control-theme::placeholder {
    color: var(--text-muted);
}

.form-control-theme:focus,
.form-select-theme:focus {
    background: var(--input-bg) !important;
    border-color: var(--accent-orange) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-select-theme option {
    background: var(--card-bg);
    color: var(--text-dark);
}

.form-label {
    color: var(--text-dark) !important;
}

.form-check-input {
    background-color: var(--input-bg);
    border-color: var(--border-dark);
}

.form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.form-check-label {
    color: var(--text-dark);
}

/* Badges */
.badge-pink {
    background: var(--accent-orange) !important;
    color: #ffffff;
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
}

/* Alerts */
.alert-theme-success {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid var(--accent-orange);
    color: var(--text-dark);
}

.alert-theme-danger {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--text-dark);
}

.alert-theme-success .btn-close,
.alert-theme-danger .btn-close {
    filter: none;
}

/* Pagination (Bootstrap 5 markup via Paginator::useBootstrapFive()) */
.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-dark);
}

.pagination-wrapper .pagination {
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    border-radius: 8px;
    min-width: 2.25rem;
    text-align: center;
    background: var(--input-bg);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.pagination .page-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
}

.pagination .page-item.active .page-link {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    background: var(--bg-light);
    color: var(--text-muted);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.invalid-feedback {
    color: #ea580c;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--accent-orange) !important;
}

.btn-sm.btn-pink,
.btn-sm.btn-outline-theme {
    padding: 0.25rem 0.5rem;
}

.btn-danger-theme {
    background: rgba(249, 115, 22, 0.12) !important;
    border: 1px solid var(--accent-orange) !important;
    color: var(--accent-orange) !important;
}

.btn-danger-theme:hover {
    background: var(--accent-orange) !important;
    color: #ffffff !important;
}
