:root {
    --navy-950: #071429;
    --navy-900: #0b1f3a;
    --navy-800: #123861;
    --navy-700: #15507d;
    --teal-500: #16b6a9;
    --cyan-400: #46c7ee;
    --amber-400: #f5b84b;
    --rose-500: #e4586c;
    --violet-500: #7a68e8;
    --surface: #f4f8fc;
    --card: #ffffff;
    --ink: #172033;
    --muted: #66758a;
    --line: #d9e4ef;
}

body.integra-shell {
    background:
        radial-gradient(circle at 20% 0%, rgba(70, 199, 238, .16), transparent 24rem),
        linear-gradient(180deg, #edf5fb 0%, var(--surface) 32%, #f8fbfe 100%);
    color: var(--ink);
}

.integra-topbar {
    background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.integra-topbar .nav-link,
.integra-topbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .86);
}

.topbar-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.topbar-icon:hover,
.topbar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem .75rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.integra-sidebar {
    background:
        linear-gradient(180deg, var(--navy-950), #0c2442 58%, #092039);
}

.sidebar-brand {
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand-link {
    gap: .7rem;
}

.brand-badge {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-400), var(--teal-500));
    color: var(--navy-950);
    font-weight: 800;
    font-size: .75rem;
}

.sidebar-menu .nav-link {
    border-radius: 8px;
    margin: .08rem .65rem;
}

.sidebar-menu .nav-link:hover,
.sidebar-menu .nav-link.active {
    background: rgba(70, 199, 238, .14);
    color: #fff;
}

.integra-main {
    min-height: 100vh;
}

.screen-hero {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 1.45rem 1.7rem;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 20, 41, .96), rgba(18, 56, 97, .94) 58%, rgba(22, 182, 169, .86));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 18px 40px rgba(7, 20, 41, .18);
}

.screen-hero::after {
    content: "";
    position: absolute;
    inset: auto -4rem -7rem auto;
    width: 20rem;
    height: 20rem;
    border: 42px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero-kicker {
    display: block;
    color: #aeeaf5;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08rem;
}

.screen-hero h1 {
    margin: .25rem 0 0;
    font-size: 1.85rem;
    font-weight: 760;
    letter-spacing: 0;
}

.hero-orbit {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 2.2rem;
}

.hero-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    transition: opacity .28s ease, visibility .28s ease;
}

.hero-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.hero-loader-card {
    width: min(360px, calc(100vw - 2rem));
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    text-align: center;
}

.hero-loader-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-400), var(--teal-500));
    color: var(--navy-950);
    font-weight: 900;
}

.hero-loader-bar {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.hero-loader-bar span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: var(--amber-400);
    animation: loader-slide 1s ease-in-out infinite;
}

.hero-loader-text {
    margin-top: .8rem;
    color: #cfe9f6;
    font-size: .9rem;
}

@keyframes loader-slide {
    0% { transform: translateX(-105%); }
    100% { transform: translateX(250%); }
}

.card,
.integra-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(9, 32, 57, .08);
}

.card-header {
    background: linear-gradient(180deg, #fff, #f7fbff);
    border-bottom-color: var(--line);
    font-weight: 700;
}

.btn {
    border-radius: 7px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-color: var(--navy-700);
}

.btn-primary:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.hero-stat {
    border: 0;
    border-radius: 8px;
    padding: 1.15rem;
    color: #fff;
    min-height: 136px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 14px 34px rgba(7, 20, 41, .14);
}

.hero-stat h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin: .2rem 0;
}

.hero-stat p {
    margin: 0;
    opacity: .86;
}

.hero-stat i {
    font-size: 2.3rem;
    opacity: .8;
}

.stat-navy { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.stat-teal { background: linear-gradient(135deg, #08776f, var(--teal-500)); }
.stat-cyan { background: linear-gradient(135deg, #137ea0, var(--cyan-400)); }
.stat-blue { background: linear-gradient(135deg, #15507d, #2d86c9); }
.stat-amber { background: linear-gradient(135deg, #8d5a0b, var(--amber-400)); }
.stat-rose { background: linear-gradient(135deg, #8f2639, var(--rose-500)); }
.stat-violet { background: linear-gradient(135deg, #3f348d, var(--violet-500)); }

.dashboard-mini-card {
    border-color: var(--line);
    box-shadow: 0 10px 24px rgba(9, 32, 57, .06);
}

.dashboard-mini-card .card-body {
    display: grid;
    gap: .2rem;
    min-height: 108px;
}

.dashboard-mini-card span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04rem;
}

.dashboard-mini-card strong {
    color: var(--navy-800);
    font-size: 1.75rem;
    line-height: 1.1;
}

.dashboard-mini-card small {
    color: var(--muted);
}

.dashboard-search-wrap {
    position: relative;
    min-width: min(320px, 100%);
}

.dashboard-search-wrap i {
    position: absolute;
    left: .65rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.dashboard-search-wrap .form-control {
    padding-left: 2rem;
}

.dashboard-inventory-card tbody tr[hidden] {
    display: none;
}

.reports-command-hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 8px;
    padding: clamp(1.25rem, 3vw, 2.35rem);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(7, 20, 41, .98), rgba(18, 56, 97, .94) 38%, rgba(22, 182, 169, .88)),
        linear-gradient(45deg, rgba(245, 184, 75, .28), rgba(122, 104, 232, .18));
    box-shadow: 0 22px 54px rgba(7, 20, 41, .2);
}

.reports-command-hero::after {
    content: "";
    position: absolute;
    inset: auto -5rem -8rem auto;
    width: 22rem;
    height: 22rem;
    border: 46px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.reports-command-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.reports-command-hero h1 {
    margin: .25rem 0 .55rem;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 820;
    letter-spacing: 0;
}

.reports-command-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.02rem;
}

.reports-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}

.reports-command-orbit {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .75rem;
    min-width: 180px;
}

.reports-command-orbit div {
    padding: .9rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
}

.reports-command-orbit strong,
.reports-command-orbit span {
    display: block;
}

.reports-command-orbit strong {
    font-size: 1.75rem;
    line-height: 1;
}

.reports-command-orbit span {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    text-transform: uppercase;
    font-weight: 700;
}

.report-metric-card {
    position: relative;
    overflow: hidden;
    min-height: 136px;
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    box-shadow: 0 14px 32px rgba(7, 20, 41, .14);
}

.report-metric-card span,
.report-metric-card strong,
.report-metric-card small {
    display: block;
    position: relative;
    z-index: 1;
}

.report-metric-card span {
    text-transform: uppercase;
    font-size: .76rem;
    font-weight: 800;
    opacity: .82;
}

.report-metric-card strong {
    margin: .25rem 0;
    font-size: 2rem;
    line-height: 1;
}

.report-metric-card small {
    opacity: .82;
}

.report-metric-card i {
    position: absolute;
    right: 1rem;
    bottom: .75rem;
    font-size: 3.1rem;
    opacity: .2;
}

.report-section-title {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin: 1.2rem 0 .75rem;
}

.report-section-title h4 {
    margin: 0;
    font-weight: 800;
}

.reports-search-wrap {
    position: relative;
    min-width: min(360px, 100%);
}

.reports-search-wrap i {
    position: absolute;
    left: .8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.reports-search-wrap .form-control {
    padding-left: 2.2rem;
}

.reports-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.report-nav-card {
    position: relative;
    overflow: hidden;
    display: grid;
    min-height: 230px;
    align-content: start;
    gap: .6rem;
    padding: 1.1rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(7, 20, 41, .12);
    transition: transform .18s ease, box-shadow .18s ease;
}

.report-nav-card:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(7, 20, 41, .18);
}

.report-nav-card[hidden] {
    display: none;
}

.report-nav-card::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.report-nav-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .18);
    font-size: 1.45rem;
}

.report-nav-title {
    font-size: 1.15rem;
    font-weight: 820;
}

.report-nav-text {
    color: rgba(255, 255, 255, .84);
}

.report-nav-tags {
    align-self: end;
    color: rgba(255, 255, 255, .76);
    font-size: .8rem;
    font-weight: 700;
}

.report-nav-open {
    margin-top: .25rem;
    font-weight: 800;
}

.report-tone-teal { background: linear-gradient(135deg, #08776f, #16b6a9); }
.report-tone-cyan { background: linear-gradient(135deg, #137ea0, #46c7ee); }
.report-tone-blue { background: linear-gradient(135deg, #0b3f72, #2d86c9); }
.report-tone-violet { background: linear-gradient(135deg, #3f348d, #7a68e8); }
.report-tone-amber { background: linear-gradient(135deg, #8d5a0b, #f5b84b); }
.report-tone-green { background: linear-gradient(135deg, #0f6b48, #35c98f); }
.report-tone-indigo { background: linear-gradient(135deg, #273a91, #5f7cf1); }
.report-tone-rose { background: linear-gradient(135deg, #8f2639, #e4586c); }
.report-tone-red { background: linear-gradient(135deg, #8a1f1f, #ef5a4f); }
.report-tone-purple { background: linear-gradient(135deg, #64278f, #b167e8); }
.report-tone-slate { background: linear-gradient(135deg, #26364d, #5f7896); }

.attendance-actionbar .form-label {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.attendance-mark-btn {
    min-height: 38px;
    align-self: end;
    white-space: nowrap;
}

.attendance-metric {
    min-height: 104px;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 12px 28px rgba(7, 20, 41, .12);
}

.attendance-metric span,
.attendance-metric strong {
    display: block;
}

.attendance-metric span {
    font-size: .76rem;
    text-transform: uppercase;
    font-weight: 800;
    opacity: .84;
}

.attendance-metric strong {
    margin-top: .35rem;
    font-size: 2rem;
    line-height: 1;
}

.status-present { background: linear-gradient(135deg, #08776f, #16b6a9); }
.status-half { background: linear-gradient(135deg, #8d5a0b, #f5b84b); }
.status-absent { background: linear-gradient(135deg, #8a1f1f, #ef5a4f); }
.status-leave { background: linear-gradient(135deg, #273a91, #5f7cf1); }

.attendance-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: .22rem .55rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
}

.attendance-status-pill.is-present { background: #e6faf6; color: #08776f; }
.attendance-status-pill.is-half { background: #fff4d8; color: #8d5a0b; }
.attendance-status-pill.is-absent { background: #ffe8e5; color: #8a1f1f; }
.attendance-status-pill.is-leave { background: #eef1ff; color: #273a91; }
.attendance-status-pill.is-off { background: #eef4f8; color: #26364d; }

.attendance-entry-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1rem;
    align-items: start;
}

.attendance-entry-card,
.attendance-helper-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(9, 32, 57, .08);
}

.attendance-entry-card {
    padding: 1rem;
}

.attendance-entry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--line);
}

.attendance-entry-head h4 {
    margin: 0;
    font-weight: 800;
}

.attendance-manual-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    min-height: 32px;
    padding: .34rem .68rem;
    border-radius: 999px;
    background: #e8f7f6;
    color: var(--navy-800);
    font-size: .78rem;
    font-weight: 800;
}

.attendance-status-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    gap: .55rem;
}

.attendance-status-option {
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: .25rem;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--navy-800);
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.attendance-status-option i {
    font-size: 1.35rem;
}

.attendance-status-option:hover {
    transform: translateY(-1px);
    border-color: var(--teal-500);
}

.btn-check:checked + .attendance-status-option {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(7, 20, 41, .14);
}

.btn-check:checked + .attendance-status-option.is-present { background: linear-gradient(135deg, #08776f, #16b6a9); }
.btn-check:checked + .attendance-status-option.is-half { background: linear-gradient(135deg, #8d5a0b, #f5b84b); }
.btn-check:checked + .attendance-status-option.is-absent { background: linear-gradient(135deg, #8a1f1f, #ef5a4f); }
.btn-check:checked + .attendance-status-option.is-leave { background: linear-gradient(135deg, #273a91, #5f7cf1); }
.btn-check:checked + .attendance-status-option.is-off { background: linear-gradient(135deg, #26364d, #5f7896); }

.attendance-time-panel {
    padding: .9rem;
    border: 1px solid #cfe5f2;
    border-radius: 8px;
    background: #f7fbfd;
}

.attendance-assignment-panel {
    padding: .9rem;
    border: 1px solid #f3d38b;
    border-left: 4px solid var(--amber-400);
    border-radius: 8px;
    background: #fffaf0;
}

.attendance-time-panel.is-muted {
    background: #f8fafc;
}

.attendance-time-note {
    display: flex;
    gap: .45rem;
    align-items: center;
    margin-bottom: .8rem;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
}

.attendance-entry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.attendance-helper-panel {
    position: sticky;
    top: 84px;
    padding: 1rem;
}

.attendance-helper-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: .8rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-400), var(--teal-500));
    color: var(--navy-950);
    font-size: 1.35rem;
}

.attendance-helper-panel h5 {
    font-weight: 800;
}

.attendance-helper-panel p {
    color: var(--muted);
}

.attendance-helper-rule {
    padding: .72rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: .6rem;
}

.attendance-helper-rule strong,
.attendance-helper-rule span {
    display: block;
}

.attendance-helper-rule span {
    color: var(--muted);
    font-size: .86rem;
}

.attendance-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .75rem;
}

.attendance-detail-grid div,
.attendance-remarks-box {
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.attendance-detail-grid span,
.attendance-remarks-box span {
    display: block;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.attendance-detail-grid strong {
    display: block;
    margin-top: .12rem;
}

.attendance-remarks-box p {
    margin: .25rem 0 0;
}

.compact-stat {
    min-height: 88px;
    padding: .9rem;
    display: block;
}

.compact-stat h3 {
    font-size: 1.45rem;
    margin-bottom: 0;
}

.module-actionbar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    margin-bottom: 1rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1rem;
}

.profile-panel {
    position: sticky;
    top: 84px;
}

.profile-avatar {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-400), var(--teal-500));
    color: var(--navy-950);
    font-size: 2rem;
}

.timeline-list {
    display: grid;
    gap: .7rem;
}

.timeline-item {
    border: 1px solid var(--line);
    border-left: 4px solid var(--teal-500);
    border-radius: 8px;
    padding: .8rem;
    background: #fff;
}

.profile-highlight {
    display: inline-block;
    padding: .08rem .38rem;
    border-radius: 6px;
    background: #e8f7f6;
    color: var(--navy-900);
    font-weight: 800;
}

.tyre-history-active {
    border-left-color: var(--teal-500);
}

.tyre-history-removed {
    border-left-color: var(--muted);
    background: #f8fafc;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.tyre-installation-entry-card {
    position: sticky;
    top: 84px;
}

.tyre-installation-layout-card .truck-tyre-layout {
    max-width: none;
}

.profile-subtabs {
    gap: .45rem;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.profile-subtabs .nav-link {
    border-radius: 7px;
    color: var(--navy-800);
    font-weight: 700;
}

.profile-subtabs .nav-link.active {
    background: var(--navy-800);
}

.detail-searchbar {
    margin-bottom: .8rem;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.small-balance-list {
    display: grid;
    gap: .45rem;
}

.small-balance-list div,
.document-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .7rem .8rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
}

.small-balance-list span,
.document-status small {
    display: block;
    color: var(--muted);
}

.document-status.available {
    border-left: 4px solid var(--teal-500);
}

.document-status.missing {
    border-left: 4px solid var(--rose-500);
    background: #fff7f8;
}

.tyre-setup-card {
    position: static;
}

.truck-tyre-layout {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 980px;
    padding: clamp(.8rem, 2vw, 1.25rem);
    border: 1px solid #c8ddec;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(232, 244, 250, .96)),
        linear-gradient(135deg, rgba(18, 56, 97, .08), rgba(22, 182, 169, .12));
    background-size: 20px 20px, auto, auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 14px 30px rgba(9, 32, 57, .08);
}

.truck-layout-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .85rem;
    margin-bottom: .85rem;
}

.truck-layout-toolbar strong,
.truck-layout-toolbar small {
    display: block;
}

.truck-layout-toolbar strong {
    color: var(--navy-900);
    font-weight: 800;
}

.truck-layout-toolbar small {
    color: var(--muted);
    font-size: .78rem;
}

.truck-layout-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .5rem;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
}

.truck-layout-legend span {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
}

.legend-dot {
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.is-installed {
    background: var(--teal-500);
}

.legend-dot.is-pending {
    background: #fff;
    border: 2px dashed #8aa0b4;
}

.truck-layout-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(138px, 1fr) minmax(136px, 170px) minmax(138px, 1fr);
    grid-template-areas: "left body right";
    gap: clamp(.55rem, 1.4vw, .85rem);
    align-items: stretch;
    max-width: 840px;
    margin: 0 auto;
    padding: .35rem;
}

.truck-layout-stage::before {
    content: "";
    position: absolute;
    inset: .4rem 32%;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7, 20, 41, .08), rgba(7, 20, 41, .02)),
        repeating-linear-gradient(180deg, transparent 0 26px, rgba(255, 255, 255, .85) 26px 34px);
    box-shadow: inset 0 0 0 1px rgba(18, 56, 97, .08);
    pointer-events: none;
}

.truck-layout-lane {
    display: grid;
    grid-template-rows: repeat(6, minmax(52px, auto));
    gap: .52rem;
    z-index: 1;
}

.truck-layout-lane-left {
    grid-area: left;
}

.truck-layout-lane-right {
    grid-area: right;
}

.truck-layout-lane-right .truck-tyre-slot {
    flex-direction: row-reverse;
    text-align: right;
}

.truck-layout-body {
    position: relative;
    grid-area: body;
    display: grid;
    grid-template-rows: .82fr 2fr;
    gap: .5rem;
    min-height: 356px;
    z-index: 1;
}

.truck-layout-cab,
.truck-layout-trailer {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid #b7ccdb;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .62) 50%, transparent 51%),
        linear-gradient(180deg, #ffffff, #edf6fb 54%, #d8e8f2);
    color: var(--navy-800);
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .78), 0 12px 24px rgba(9, 32, 57, .12);
}

.truck-layout-cab::before,
.truck-layout-trailer::before {
    content: "";
    position: absolute;
    inset: .5rem;
    border: 1px dashed rgba(21, 80, 125, .22);
    border-radius: 7px;
}

.truck-layout-cab {
    min-height: 106px;
    clip-path: polygon(16% 0, 84% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
}

.truck-layout-cab i {
    position: relative;
    z-index: 1;
    font-size: 1.9rem;
}

.truck-layout-cab span,
.truck-layout-trailer span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04rem;
}

.truck-layout-trailer {
    min-height: 214px;
    border-top-width: 4px;
}

.truck-tyre-slot {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
    min-height: 52px;
    padding: .42rem .5rem;
    border: 1px solid #c9d8e4;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 254, .98));
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
    box-shadow: 0 8px 18px rgba(9, 32, 57, .08);
}

.truck-tyre-slot:hover {
    border-color: var(--teal-500);
    box-shadow: 0 8px 20px rgba(9, 32, 57, .09);
    transform: translateY(-1px);
}

.truck-tyre-slot.is-installed {
    border-color: rgba(22, 182, 169, .7);
    background: linear-gradient(180deg, #f5fffd, #e8fbf8);
}

.truck-tyre-slot.is-pending {
    border-style: dashed;
    border-color: #9db0c0;
}

.truck-tyre-slot.is-selected {
    border-style: solid;
    border-color: var(--rose-500);
    background: linear-gradient(180deg, #fff7f8, #ffe8ec);
    box-shadow: 0 0 0 .18rem rgba(228, 88, 108, .16), 0 10px 24px rgba(143, 38, 57, .18);
    transform: translateY(-1px);
}

.truck-tyre-slot.is-selected .truck-tyre-wheel {
    border-color: #8f2639;
    background:
        radial-gradient(circle at 50% 50%, #fff7f8 0 18%, transparent 19%),
        linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, .28) 43%, rgba(255, 255, 255, .28) 57%, transparent 58%),
        var(--rose-500);
    box-shadow: inset 0 0 0 4px #ffd3da;
}

.truck-tyre-slot.is-selected .truck-tyre-slot-status,
.truck-tyre-slot.is-selected .truck-tyre-slot-text strong {
    color: #8f2639;
    font-weight: 800;
}

.truck-tyre-wheel {
    width: 28px;
    height: 38px;
    flex: 0 0 28px;
    border-radius: 999px;
    border: 3px solid #1f2937;
    background:
        radial-gradient(circle at 50% 50%, #aeb9c5 0 18%, transparent 19%),
        linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, .24) 43%, rgba(255, 255, 255, .24) 57%, transparent 58%),
        #2f3a46;
    box-shadow: inset 0 0 0 4px #657487;
}

.truck-tyre-slot.is-installed .truck-tyre-wheel {
    border-color: #08776f;
    background:
        radial-gradient(circle at 50% 50%, #f4fffd 0 18%, transparent 19%),
        linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, .28) 43%, rgba(255, 255, 255, .28) 57%, transparent 58%),
        var(--teal-500);
    box-shadow: inset 0 0 0 4px #dff8f5;
}

.truck-tyre-slot-text {
    display: grid;
    min-width: 0;
    gap: .05rem;
    line-height: 1.08;
}

.truck-tyre-slot-text strong,
.truck-tyre-slot-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.truck-tyre-slot-text strong {
    font-size: .76rem;
    color: var(--navy-800);
}

.truck-tyre-slot-text small {
    color: var(--muted);
    font-size: .68rem;
}

.truck-tyre-slot.is-installed .truck-tyre-slot-status {
    color: var(--teal-500);
    font-weight: 800;
}

.slot-horse-front-left,
.slot-horse-front-right { grid-row: 1; }
.slot-horse-rear-left,
.slot-horse-rear-right { grid-row: 2; }
.slot-body-front-left,
.slot-body-front-right { grid-row: 3; }
.slot-body-middle-left,
.slot-body-middle-right { grid-row: 4; }
.slot-body-rear-left,
.slot-body-rear-right { grid-row: 5; }
.slot-body-other-left,
.slot-body-other-right,
.slot-horse-other-left,
.slot-horse-other-right { grid-row: 6; }
.truck-tyre-slot.dual-2 {
    margin-top: -.32rem;
}

.truck-layout-extra {
    margin-top: .45rem;
}

.report-filter-card .form-label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.permission-matrix th {
    background: #eef6fc;
}

.permission-matrix td,
.permission-matrix th {
    text-align: center;
    vertical-align: middle;
}

.permission-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
}

.permission-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1rem;
}

.permission-module-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(9, 32, 57, .08);
    overflow: hidden;
}

.permission-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fbff, #eef7fb);
    border-bottom: 1px solid var(--line);
}

.permission-module-header strong,
.permission-module-header span {
    display: block;
}

.permission-module-header span {
    color: var(--muted);
    font-size: .86rem;
}

.permission-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 1rem;
}

.permission-tile {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.permission-tile:hover {
    border-color: var(--teal-500);
    background: #f5fcfb;
}

.permission-tile.is-empty {
    justify-content: center;
    background: #f8fafc;
    cursor: default;
}

.permission-tile strong,
.permission-tile small {
    display: block;
}

.permission-tile small {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.permission-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e8f7f6;
    color: var(--navy-800);
    font-size: .75rem;
    text-transform: uppercase;
}

.table td,
.table th {
    vertical-align: middle;
}

.table-responsive {
    overflow-x: hidden;
}

.dataTables_wrapper,
.dt-container {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.dataTables_wrapper .row,
.dt-container .row {
    --bs-gutter-x: .75rem;
}

.dt-buttons,
.dataTables_filter {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    max-width: 100%;
}

.dataTables_filter label {
    width: 100%;
}

.dataTables_filter input {
    max-width: 100%;
}

.grid-table {
    width: 100% !important;
    table-layout: fixed;
}

.datatable th,
.grid-table th {
    white-space: normal !important;
    overflow: visible;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: .82rem;
    line-height: 1.15;
}

.grid-table td {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
}

.grid-actions {
    width: 118px;
    min-width: 118px;
}

.grid-table th:last-child,
.grid-table td:last-child {
    width: 118px;
}

.grid-actions .btn,
.grid-actions form {
    margin-bottom: .2rem;
}

.card-body {
    min-width: 0;
}

.select2-container .select2-selection--single {
    height: 38px;
    padding-top: 4px;
    border-color: var(--line);
}

.required-star {
    color: #dc3545;
    font-weight: 800;
}

.required-entry {
    border-color: #f1a6ad !important;
    background-color: #fff7f8 !important;
    box-shadow: 0 0 0 .12rem rgba(228, 88, 108, .12);
    animation: required-pulse 1.8s ease-in-out infinite;
}

.required-entry.is-complete {
    animation: none;
    border-color: #b9d8c6 !important;
    background-color: #fbfffc !important;
    box-shadow: none;
}

.select2-container.required-entry .select2-selection,
.select2-container .select2-selection.required-entry {
    border-color: #f1a6ad !important;
    background-color: #fff7f8 !important;
}

@keyframes required-pulse {
    0%, 100% {
        box-shadow: 0 0 0 .10rem rgba(228, 88, 108, .10);
    }
    50% {
        box-shadow: 0 0 0 .22rem rgba(228, 88, 108, .20);
    }
}

.integra-login {
    background:
        radial-gradient(circle at 15% 15%, rgba(70, 199, 238, .25), transparent 24rem),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.login-hero-shell {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, .72fr);
    background:
        linear-gradient(135deg, rgba(7, 20, 41, .94), rgba(12, 45, 78, .86)),
        radial-gradient(circle at 18% 18%, rgba(70, 199, 238, .32), transparent 22rem),
        radial-gradient(circle at 78% 70%, rgba(22, 182, 169, .24), transparent 18rem);
    color: #fff;
}

.login-hero-content {
    min-height: 100vh;
    padding: clamp(2rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 2.5rem;
}

.login-brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-400), var(--teal-500));
    color: var(--navy-950);
    font-weight: 900;
}

.login-brand-lockup strong,
.login-brand-lockup small {
    display: block;
}

.login-brand-lockup small {
    color: #bad7e8;
}

.login-hero-content h1 {
    max-width: 680px;
    font-size: clamp(1.9rem, 3.8vw, 3.85rem);
    line-height: 1.08;
    font-weight: 820;
    letter-spacing: 0;
    margin: 0;
}

.login-hero-content p {
    max-width: 680px;
    margin: 1.25rem 0 2rem;
    color: #c8dcec;
    font-size: 1.08rem;
}

.login-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: .9rem;
    max-width: 720px;
}

.login-hero-metrics div {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
}

.login-hero-metrics strong,
.login-hero-metrics span {
    display: block;
}

.login-hero-metrics strong {
    font-size: 1.3rem;
}

.login-hero-metrics span {
    color: #b9d6e6;
    font-size: .88rem;
}

.login-hero-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.login-card {
    width: min(100%, 430px);
    padding: 1.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.login-card-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.login-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
    color: #fff;
    font-size: 1.4rem;
}

.login-card h2 {
    margin: 0;
    font-weight: 780;
}

.login-card p {
    margin: 0;
    color: var(--muted);
}

.login-card .input-group-text {
    background: #eef6fc;
    border-color: var(--line);
}

.login-default-note {
    margin-top: 1rem;
    padding: .85rem;
    border-radius: 8px;
    background: #f0f7fb;
    color: var(--muted);
    font-size: .9rem;
}

.login-help-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #d9f7ff;
    text-decoration: none;
    font-weight: 700;
}

.login-help-link:hover {
    color: #fff;
}

.guide-public {
    min-height: 100vh;
    padding: clamp(1rem, 3vw, 2rem);
    background:
        radial-gradient(circle at 20% 0%, rgba(70, 199, 238, .18), transparent 24rem),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.guide-page:not(.guide-public) {
    padding-bottom: 2rem;
}

.guide-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-700), var(--teal-500));
    color: #fff;
    margin-bottom: 1rem;
}

.guide-hero h1 {
    margin: .2rem 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 820;
}

.guide-hero p {
    margin: 0;
    color: #d7eef6;
}

.guide-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
}

.guide-index {
    position: sticky;
    top: 1rem;
    align-self: start;
    display: grid;
    gap: .45rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
}

.guide-index a {
    color: var(--navy-800);
    text-decoration: none;
    padding: .55rem .7rem;
    border-radius: 8px;
}

.guide-index a:hover {
    background: #eef7fb;
}

.guide-content {
    display: grid;
    gap: 1rem;
}

.guide-card {
    padding: 1.2rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(9, 32, 57, .08);
}

.guide-card h2 {
    color: var(--navy-900);
    font-size: 1.25rem;
}

.guide-bullets {
    display: grid;
    gap: .55rem;
    margin: .8rem 0 0;
    padding-left: 1.15rem;
}

.guide-bullets li {
    padding-left: .25rem;
    color: #344256;
}

.guide-example {
    margin-top: 1rem;
    padding: .95rem 1rem;
    border: 1px solid #cfe5f2;
    border-left: 4px solid var(--teal-500);
    border-radius: 8px;
    background: #f5fbfd;
    color: #304258;
}

.guide-example code,
.guide-steps code {
    color: var(--navy-800);
    background: #eaf5fb;
    border-radius: 4px;
    padding: .1rem .25rem;
}

.scenario-tabs {
    margin-top: 1rem;
}

.scenario-tabs .nav-link {
    color: var(--navy-800);
    font-weight: 700;
}

.scenario-content {
    padding: 1rem;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
}

.scenario-content h3 {
    font-size: 1.05rem;
    color: var(--navy-900);
    margin-bottom: .8rem;
}

.scenario-subtitle {
    font-size: .98rem;
    font-weight: 800;
    color: var(--navy-800);
    margin: .2rem 0 .4rem;
}

.guide-steps {
    display: grid;
    gap: .7rem;
    margin: 0;
    padding-left: 1.15rem;
}

.guide-steps li {
    padding-left: .25rem;
    color: #344256;
}

@media (max-width: 991.98px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-panel {
        position: static;
    }

    .screen-hero {
        min-height: 112px;
        padding: 1.1rem;
    }

    .login-hero-shell {
        grid-template-columns: 1fr;
    }

    .login-hero-content,
    .login-hero-panel {
        min-height: auto;
    }

    .login-hero-content {
        padding-bottom: 1rem;
    }

    .login-hero-metrics {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-index {
        position: static;
    }

    .permission-action-grid {
        grid-template-columns: 1fr;
    }

    .attendance-entry-shell {
        grid-template-columns: 1fr;
    }

    .attendance-helper-panel {
        position: static;
    }

    .attendance-status-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .truck-layout-toolbar {
        display: grid;
    }

    .truck-layout-legend {
        justify-content: flex-start;
    }

    .truck-tyre-layout {
        max-width: none;
    }

    .truck-layout-stage {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "body body"
            "left right";
        max-width: 680px;
        gap: .75rem;
        padding: .5rem;
    }

    .truck-layout-stage::before {
        inset: .5rem .5rem auto;
        height: 116px;
        background:
            linear-gradient(90deg, rgba(7, 20, 41, .08), rgba(7, 20, 41, .02)),
            repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, .85) 30px 38px);
    }

    .truck-layout-body {
        min-height: auto;
        grid-template-columns: minmax(104px, .78fr) minmax(150px, 1.65fr);
        grid-template-rows: none;
        align-items: stretch;
        min-width: 0;
    }

    .truck-layout-cab,
    .truck-layout-trailer {
        min-height: 118px;
    }

    .truck-layout-lane {
        grid-template-rows: none;
        align-content: start;
        gap: .45rem;
    }

    .truck-layout-lane-right .truck-tyre-slot {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .dataTables_wrapper,
    .dt-container,
    .table-responsive {
        overflow-x: visible;
    }

    .dt-buttons {
        margin-bottom: .35rem;
    }

    .dt-buttons .btn,
    .dataTables_filter,
    .dataTables_filter label,
    .dataTables_filter input {
        width: 100%;
    }

    .mobile-card-table {
        border-collapse: separate;
        border-spacing: 0 .85rem;
    }

    .mobile-card-table thead {
        display: none;
    }

    .mobile-card-table,
    .mobile-card-table tbody,
    .mobile-card-table tr,
    .mobile-card-table td {
        display: block;
        width: 100% !important;
    }

    .mobile-card-table tr {
        padding: .75rem;
        border: 1px solid var(--line);
        border-left: 4px solid var(--teal-500);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 10px 22px rgba(9, 32, 57, .07);
    }

    .mobile-card-table.table-striped > tbody > tr:nth-of-type(odd) > * {
        --bs-table-accent-bg: transparent;
    }

    .mobile-card-table td {
        min-height: 34px;
        padding: .42rem 0 !important;
        border: 0;
        border-bottom: 1px solid #edf3f8;
        text-align: left !important;
        overflow-wrap: anywhere;
    }

    .mobile-card-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: .12rem;
        color: var(--muted);
        font-size: .72rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-card-table td:first-child {
        color: var(--navy-900);
        font-size: 1rem;
        font-weight: 800;
    }

    .mobile-card-table td:first-child::before {
        color: var(--teal-500);
    }

    .mobile-card-table td:last-child {
        border-bottom: 0;
        padding-top: .65rem !important;
    }

    .mobile-card-table td:last-child::before {
        content: "";
        display: none;
    }

    .mobile-card-table .grid-actions,
    .mobile-card-table td:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: .35rem;
        align-items: center;
        justify-content: flex-start !important;
        min-width: 0;
    }

    .mobile-card-table .grid-actions .btn,
    .mobile-card-table .grid-actions form {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .attendance-entry-head {
        display: grid;
    }

    .attendance-status-picker {
        grid-template-columns: 1fr;
    }

    .truck-tyre-layout {
        padding: .7rem;
    }

    .truck-layout-stage {
        gap: .55rem;
        padding: .15rem;
    }

    .truck-layout-body {
        grid-template-columns: minmax(82px, .72fr) minmax(128px, 1.5fr);
        gap: .38rem;
    }

    .truck-layout-cab,
    .truck-layout-trailer {
        min-height: 98px;
        border-radius: 8px;
    }

    .truck-layout-cab i {
        font-size: 1.45rem;
    }

    .truck-layout-cab span,
    .truck-layout-trailer span {
        font-size: .68rem;
    }

    .truck-layout-lane {
        gap: .38rem;
    }

    .truck-tyre-slot {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        gap: .38rem;
        min-height: 50px;
        padding: .38rem;
    }

    .truck-tyre-wheel {
        width: 24px;
        height: 34px;
        flex-basis: 24px;
        border-width: 2px;
        box-shadow: inset 0 0 0 3px #657487;
    }

    .truck-tyre-slot.is-installed .truck-tyre-wheel {
        box-shadow: inset 0 0 0 3px #dff8f5;
    }

    .truck-tyre-slot.is-selected .truck-tyre-wheel {
        box-shadow: inset 0 0 0 3px #ffd3da;
    }

    .truck-tyre-slot-text strong {
        font-size: .7rem;
    }

    .truck-tyre-slot-text small {
        font-size: .62rem;
    }
}
