:root {
    --fcms-bg: #0e131c;
    --fcms-bg-2: #131b28;
    --fcms-surface: #1b2534;
    --fcms-surface-2: #222e40;
    --fcms-border: #2e3c54;
    --fcms-text: #e8eef8;
    --fcms-muted: #9aa9c2;
    --fcms-primary: #22b8cf;
    --fcms-primary-strong: #149eb4;
    --fcms-success: #10b981;
    --fcms-danger: #ef4444;
    --fcms-warning: #f59e0b;
    --fcms-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body.fcms-body {
    --fcms-topbar-h: 34px;
    --fcms-nav-offset: 74px;
    --fcms-announcement-h: 0px;
    font-family: "Sora", "Segoe UI", "Noto Sans", sans-serif;
    color: var(--fcms-text);
    padding-top: calc(var(--fcms-topbar-h) + var(--fcms-nav-offset) + var(--fcms-announcement-h));
    background:
        radial-gradient(1100px 700px at 90% -10%, rgba(34, 184, 207, 0.16), transparent 60%),
        radial-gradient(900px 700px at -10% -15%, rgba(63, 94, 251, 0.13), transparent 62%),
        linear-gradient(180deg, var(--fcms-bg-2) 0%, var(--fcms-bg) 65%);
}

main.container {
    position: relative;
    z-index: 2;
}

main.container::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
    z-index: -1;
}

/* Navbar */
.fcms-navbar {
    position: fixed;
    top: var(--fcms-topbar-h);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    margin: 0 !important;
    background: rgba(10, 14, 20, 0.86) !important;
    border-bottom: 1px solid var(--fcms-border);
    backdrop-filter: blur(9px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.navbar .nav-link {
    color: #d9e4f4 !important;
    border-radius: 0.5rem;
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

/* Panels */
.fcms-card,
.card,
.modal-content,
.dropdown-menu {
    color: var(--fcms-text);
    border: 1px solid var(--fcms-border);
    background: linear-gradient(180deg, rgba(31, 42, 58, 0.98) 0%, rgba(27, 37, 52, 0.98) 100%);
    box-shadow: var(--fcms-shadow);
}

.card .card-header {
    border-bottom: 1px solid var(--fcms-border);
    background: rgba(255, 255, 255, 0.02);
}

.text-secondary,
.text-muted,
small,
.small {
    color: var(--fcms-muted) !important;
}

/* Dashboard */
.fcms-stat-card {
    position: relative;
    border: 1px solid var(--fcms-border);
    border-radius: 0.85rem;
    background: linear-gradient(180deg, rgba(31, 42, 58, 0.98) 0%, rgba(24, 34, 48, 0.98) 100%);
    box-shadow: var(--fcms-shadow);
    padding: 1rem 1.05rem;
    min-height: 114px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.fcms-stat-card .label {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--fcms-muted);
    margin-bottom: 0.4rem;
}

.fcms-stat-card .value {
    font-size: clamp(1.6rem, 4vw, 2.05rem);
    font-weight: 800;
    line-height: 1;
    color: #eef4ff;
    white-space: nowrap;
}
/* Typography */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #f4f8ff;
    letter-spacing: 0.01em;
}

/* Forms */
.form-label {
    color: #dce6f6;
    font-size: 0.92rem;
}

.form-control,
.form-select {
    color: var(--fcms-text);
    background: #141d2b;
    border-color: var(--fcms-border);
}

.form-control::placeholder {
    color: #7f90ab;
}

.form-control:focus,
.form-select:focus {
    color: var(--fcms-text);
    background: #141d2b;
    border-color: var(--fcms-primary);
    box-shadow: 0 0 0 0.2rem rgba(34, 184, 207, 0.22);
}

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn-primary {
    --bs-btn-bg: var(--fcms-primary);
    --bs-btn-border-color: var(--fcms-primary);
    --bs-btn-hover-bg: var(--fcms-primary-strong);
    --bs-btn-hover-border-color: var(--fcms-primary-strong);
    --bs-btn-active-bg: var(--fcms-primary-strong);
    --bs-btn-active-border-color: var(--fcms-primary-strong);
    --bs-btn-color: #05232a;
    --bs-btn-hover-color: #021419;
}

.btn-success {
    --bs-btn-bg: var(--fcms-success);
    --bs-btn-border-color: var(--fcms-success);
    --bs-btn-hover-bg: #0ca271;
    --bs-btn-hover-border-color: #0ca271;
}

.btn-danger {
    --bs-btn-bg: var(--fcms-danger);
    --bs-btn-border-color: var(--fcms-danger);
}

.btn-outline-secondary,
.btn-outline-dark,
.btn-outline-danger,
.btn-outline-light,
.btn-outline-info {
    --bs-btn-color: #d8e4f7;
    --bs-btn-border-color: var(--fcms-border);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-hover-border-color: #7d90af;
    --bs-btn-hover-color: #ffffff;
}

/* Alerts & badges */
.alert {
    border: 1px solid var(--fcms-border);
}

.alert-info {
    color: #d1f4fa;
    background: rgba(34, 184, 207, 0.15);
}

.alert-danger {
    color: #ffd4d7;
    background: rgba(239, 68, 68, 0.16);
}

.alert-success {
    color: #b8f6da;
    background: rgba(16, 185, 129, 0.16);
}

.badge {
    border-radius: 999px;
    padding: 0.35em 0.65em;
}

/* Table */
.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--fcms-text);
    --bs-table-border-color: var(--fcms-border);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
    --bs-table-striped-color: var(--fcms-text);
    --bs-table-hover-bg: rgba(34, 184, 207, 0.08);
    --bs-table-hover-color: #ffffff;
}


.table.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
    --bs-table-hover-bg: rgba(34, 184, 207, 0.08);
    color: var(--fcms-text);
}
.table-responsive {
    font-size: 0.95rem;
    border-radius: 0.75rem;
}

/* Timetable */
.fcms-timetable-scroll {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
}

.fcms-planning-mobile {
    display: none;
}

.fcms-planning-desktop {
    display: block;
}

.fcms-timetable {
    width: max-content;
    min-width: 100%;
    display: flex;
    gap: 0.35rem;
}

.fcms-time-axis,
.fcms-day-column {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--fcms-border);
    border-radius: 0.5rem;
    background: #161c27;
    overflow: hidden;
}

.fcms-time-axis {
    width: 78px;
    flex: 0 0 78px;
}

.fcms-day-column {
    min-width: var(--fcms-day-col-width, 0);
    flex: 1 1 var(--fcms-day-col-width, 0);
}

.fcms-day-column.is-today {
    border-color: var(--fcms-primary);
    box-shadow: inset 0 0 0 1px rgba(34, 184, 207, 0.35);
}

.shifts-timetable-first.fcms-planning-day .fcms-day-column {
    min-width: 0 !important;
    flex: 1 1 auto;
}

@media (min-width: 992px) {
    .shifts-timetable-first.fcms-planning-all .fcms-timetable-scroll {
        overflow-x: hidden;
    }

    .shifts-timetable-first.fcms-planning-all .fcms-timetable {
        width: 100%;
        min-width: 0;
    }

    .shifts-timetable-first.fcms-planning-all .fcms-day-column {
        min-width: 0 !important;
        flex: 1 1 0 !important;
    }
}

.fcms-day-header {
    padding: 0.5rem;
    border-bottom: 1px solid var(--fcms-border);
    background: #1b2331;
    text-align: center;
    min-height: 62px;
}

.fcms-day-body {
    position: relative;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.01),
        rgba(255, 255, 255, 0.01) 21px,
        rgba(255, 255, 255, 0.015) 21px,
        rgba(255, 255, 255, 0.015) 42px
    );
}

.fcms-day-poles-head {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    border-bottom: 1px solid var(--fcms-border);
    background: rgba(18, 27, 41, 0.78);
}

.fcms-day-pole-head {
    min-width: 0;
    padding: 0.18rem 0.24rem;
    border-right: 1px solid rgba(154, 165, 181, 0.18);
    font-size: 0.62rem;
    color: var(--fcms-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fcms-day-pole-head:last-child {
    border-right: 0;
}

.fcms-pole-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(154, 165, 181, 0.18);
    z-index: 1;
    pointer-events: none;
}

.fcms-hour-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(154, 165, 181, 0.22);
}

.fcms-hour-label {
    position: absolute;
    left: 0;
    right: 0;
    height: 1rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--fcms-muted);
    text-align: center;
    background: linear-gradient(to right, rgba(22, 28, 39, 0), rgba(22, 28, 39, 0.9), rgba(22, 28, 39, 0));
}

.fcms-hour-label.is-first {
    transform: none;
}

.fcms-hour-label.is-last {
    transform: translateY(-100%);
}

.fcms-shift-block {
    appearance: none;
    text-align: left;
    cursor: pointer;
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    border-radius: 0.45rem;
    background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
    color: #08131f;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.28rem 0.38rem;
    overflow: hidden;
    z-index: 2;
}

.fcms-shift-block.presence-present {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}

.fcms-shift-block.presence-absent {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
    color: #2a0d0d;
}

.fcms-shift-block.presence-mixed {
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    color: #2a1a06;
}

.fcms-shift-title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
}

body.fcms-planning-edit-mode .fcms-shift-block[data-can-manage="1"] {
    cursor: move;
}

.fcms-shift-drag-ghost {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.fcms-shift-edited {
    outline: 2px dashed rgba(255, 255, 255, 0.9);
    outline-offset: -2px;
}

.fcms-shift-copied-preview {
    box-shadow: inset 0 0 0 2px rgba(250, 204, 21, 0.95), 0 6px 16px rgba(0, 0, 0, 0.32);
}

.fcms-shift-resize-handle {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    display: none;
    cursor: ns-resize;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.65));
}

body.fcms-planning-edit-mode .fcms-shift-block[data-can-manage="1"] .fcms-shift-resize-handle {
    display: block;
}

.fcms-shift-delete-handle {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    background: rgba(190, 24, 49, 0.92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 20;
    pointer-events: auto;
}

body.fcms-planning-edit-mode .fcms-shift-block[data-can-manage="1"] .fcms-shift-delete-handle {
    display: inline-flex;
}

.fcms-shift-delete-handle:hover {
    background: rgba(220, 38, 38, 0.98);
}

.fcms-shift-marked-delete {
    opacity: 0.45 !important;
    filter: grayscale(0.35);
    outline: 2px solid rgba(248, 113, 113, 0.95);
}

.fcms-shift-block.is-resizing {
    outline: 2px solid rgba(255, 255, 255, 0.95);
}

.fcms-edit-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
    z-index: 12;
}

.fcms-edit-snap-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 2px dashed #facc15;
}

.fcms-edit-time-badge {
    position: absolute;
    left: 6px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(250, 204, 21, 0.95);
    color: #111827;
}

.fcms-shift-self-icon {
    margin-left: 0.28rem;
    font-size: 0.72em;
    opacity: 0.92;
}

.fcms-shift-hover-tooltip .tooltip-inner {
    max-width: 340px;
    text-align: left;
    white-space: pre-line;
}

.fcms-shift-meta {
    font-size: 0.68rem;
    line-height: 1.1;
}

.shifts-timetable-first.fcms-planning-dense .fcms-shift-block {
    border-radius: 0.35rem;
    padding: 0.2rem 0.26rem;
}

.shifts-timetable-first.fcms-planning-dense .fcms-shift-title {
    font-size: 0.66rem;
    line-height: 1.05;
}

.shifts-timetable-first.fcms-planning-dense .fcms-shift-meta {
    font-size: 0.56rem;
    line-height: 1.02;
}

.shifts-timetable-first.fcms-planning-dense .fcms-shift-meta.is-location,
.shifts-timetable-first.fcms-planning-dense .fcms-shift-meta.is-slots {
    display: none;
}

.fcms-now-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 2px solid #ff5f5f;
    z-index: 4;
}

.fcms-now-badge {
    position: absolute;
    right: 0.35rem;
    z-index: 5;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: #ff5f5f;
    border-radius: 999px;
    padding: 0.05rem 0.35rem;
}

.fcms-now-badge-axis {
    right: auto;
    left: 0.2rem;
}

.fcms-cascade-view {
    display: grid;
    gap: 0.75rem;
}

.fcms-cascade-day {
    border: 1px solid var(--fcms-border);
    border-radius: 0.65rem;
    background: #151d29;
    padding: 0.75rem;
    max-width: 100%;
    overflow: hidden;
}

.fcms-cascade-day.is-today {
    border-color: rgba(34, 184, 207, 0.75);
    box-shadow: inset 0 0 0 1px rgba(34, 184, 207, 0.28);
}

.fcms-cascade-day-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.fcms-cascade-now-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff5f5f;
    z-index: 5;
}

.fcms-cascade-grid {
    display: grid;
    gap: 0.3rem;
}

.fcms-cascade-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
}

.fcms-cascade-hours-head {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 0.45rem;
    align-items: center;
}

.fcms-cascade-hours-track {
    position: relative;
    height: 1.4rem;
    border-bottom: 1px solid rgba(154, 165, 181, 0.4);
}

.fcms-cascade-hour-tick {
    position: absolute;
    top: 0;
    bottom: -1px;
    width: 1px;
    background: rgba(154, 165, 181, 0.28);
}

.fcms-cascade-hour-tick span {
    position: absolute;
    top: 0;
    left: 0.24rem;
    font-size: 0.7rem;
    color: #b7c3d7;
}

.fcms-cascade-rows {
    display: grid;
    gap: 0.3rem;
}

.fcms-cascade-pole-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 0.45rem;
    align-items: stretch;
}

.fcms-cascade-pole-label {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0.35rem 0.4rem;
    border: 1px solid rgba(154, 165, 181, 0.18);
    border-radius: 0.45rem;
    background: rgba(16, 23, 34, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
}

.fcms-cascade-timeline {
    position: relative;
    border: 1px solid rgba(154, 165, 181, 0.18);
    border-radius: 0.45rem;
    background: rgba(16, 23, 34, 0.85);
    overflow: hidden;
}

.fcms-cascade-gridline {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(154, 165, 181, 0.2);
}

.fcms-cascade-chip {
    position: absolute;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 0.38rem;
    color: #08131f;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    padding: 0.2rem 0.32rem;
    overflow: hidden;
    z-index: 3;
}

.fcms-cascade-chip-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.fcms-cascade-now-caption {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff8b8b;
}

@media (max-width: 768px) {
    .fcms-cascade-grid {
        min-width: 860px;
    }

    .fcms-cascade-hours-head,
    .fcms-cascade-pole-row {
        grid-template-columns: 110px 1fr;
        gap: 0.35rem;
    }

    .fcms-cascade-pole-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.3rem;
    }

    .fcms-cascade-chip {
        font-size: 0.62rem;
        padding: 0.18rem 0.24rem;
    }
}

.fcms-mobile-timebar {
    position: relative;
    height: 1.5rem;
    border: 1px solid rgba(154, 165, 181, 0.14);
    border-radius: 0.4rem;
    background: rgba(16, 23, 34, 0.55);
    margin-bottom: 0.45rem;
    overflow: hidden;
}

.fcms-mobile-timebar-tick {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    background: transparent;
}

.fcms-mobile-timebar-tick span {
    position: absolute;
    top: 0.2rem;
    left: 0;
    transform: translateX(-50%);
    font-size: 0.58rem;
    color: #95a7bf;
    white-space: nowrap;
}

.fcms-mobile-timebar-live {
    position: absolute;
    top: 0.16rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 3;
}

.fcms-mobile-timebar-live-dot {
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 999px;
    background: #ff4d57;
    box-shadow: 0 0 0 2px rgba(255, 77, 87, 0.25);
}

.fcms-mobile-timebar-live-label {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffd6da;
    background: rgba(255, 77, 87, 0.2);
    border: 1px solid rgba(255, 77, 87, 0.45);
    border-radius: 999px;
    padding: 0.02rem 0.22rem;
}

/* Presence */
.fcms-presence-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.fcms-presence-badge.presence-pending {
    background: rgba(148, 163, 184, 0.25);
    border-color: rgba(148, 163, 184, 0.4);
}

.fcms-presence-badge.presence-present {
    background: rgba(16, 185, 129, 0.24);
    border-color: rgba(16, 185, 129, 0.45);
    color: #86efac;
}

.fcms-presence-badge.presence-absent {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5;
}

.fcms-presence-badge.presence-mixed {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.45);
    color: #fcd34d;
}

/* Range picker */
.fcms-range-picker {
    background: rgba(20, 26, 36, 0.55);
    border-color: var(--fcms-border) !important;
}

.fcms-picker-days {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.fcms-picker-wrap {
    display: flex;
    gap: 0.5rem;
}

.fcms-picker-axis {
    width: 70px;
    min-width: 70px;
    position: relative;
    border: 1px solid var(--fcms-border);
    border-radius: 0.5rem;
    background: #151b27;
}

.fcms-picker-col {
    flex: 1;
    min-width: 0;
}

.fcms-picker-body {
    position: relative;
    border: 1px solid var(--fcms-border);
    border-radius: 0.5rem;
    overflow: hidden;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.01),
        rgba(255, 255, 255, 0.01) 21px,
        rgba(255, 255, 255, 0.018) 21px,
        rgba(255, 255, 255, 0.018) 42px
    );
    touch-action: none;
    cursor: crosshair;
}

.fcms-picker-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(154, 165, 181, 0.2);
}

.fcms-picker-hour {
    position: absolute;
    left: 0;
    right: 0;
    height: 1rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--fcms-muted);
    text-align: center;
}

.fcms-picker-axis .fcms-picker-hour:first-child {
    transform: none;
}

.fcms-picker-axis .fcms-picker-hour:last-child {
    transform: translateY(-100%);
}

.fcms-picker-selection {
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    border-radius: 0.45rem;
    background: rgba(34, 184, 207, 0.2);
    border: 1px solid rgba(34, 184, 207, 0.55);
}

.fcms-picker-selection-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d9f8fd;
    padding: 0.2rem 0.35rem;
}

/* Dropdown-style details panels */
.fcms-drop {
    border: 1px solid var(--fcms-border);
    border-radius: 0.75rem;
    background: linear-gradient(180deg, rgba(31, 42, 58, 0.98) 0%, rgba(27, 37, 52, 0.98) 100%);
}

.fcms-drop-summary {
    cursor: pointer;
    list-style: none;
    padding: 0.85rem 1rem;
    font-weight: 700;
    color: #f4f8ff;
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fcms-drop-summary::-webkit-details-marker {
    display: none;
}

.fcms-drop-summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
    color: #8fb3d9;
    transition: transform 0.18s ease, color 0.18s ease;
}

.fcms-drop[open] .fcms-drop-summary {
    border-bottom-color: var(--fcms-border);
}

.fcms-drop[open] .fcms-drop-summary::after {
    transform: rotate(180deg);
    color: #d8e9ff;
}

.modal {
    z-index: 2000;
}

.modal-backdrop {
    z-index: 1990;
}

.modal.show .modal-dialog {
    pointer-events: auto;
}

.fcms-incident-row td .badge.incident-status-open {
    background: rgba(59, 130, 246, 0.24);
    color: #bfdbfe;
}

.fcms-incident-row td .badge.incident-status-resolved {
    background: rgba(16, 185, 129, 0.24);
    color: #86efac;
}

.fcms-incident-row td .badge.incident-priority-1 {
    background: rgba(239, 68, 68, 0.24);
    color: #fca5a5;
}

.fcms-incident-row td .badge.incident-priority-2 {
    background: rgba(245, 158, 11, 0.24);
    color: #fcd34d;
}

.fcms-incident-row td .badge.incident-priority-3 {
    background: rgba(196, 181, 253, 0.24);
    color: #ddd6fe;
}

tr.fcms-incident-row.incident-status-open.incident-priority-1 {
    box-shadow: inset 4px 0 0 #ef4444;
}

tr.fcms-incident-row.incident-status-open.incident-priority-2 {
    box-shadow: inset 4px 0 0 #f59e0b;
}

tr.fcms-incident-row.incident-status-open.incident-priority-3 {
    box-shadow: inset 4px 0 0 #c4b5fd;
}

tr.fcms-incident-row.incident-status-resolved {
    box-shadow: inset 4px 0 0 #10b981;
}


/* Footer */
footer {
    background: rgba(9, 12, 18, 0.92) !important;
    border-top: 1px solid var(--fcms-border) !important;
}

footer a {
    color: #9aeaf5;
}

.fcms-footer-top,
.fcms-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 1rem;
}

.fcms-footer-top {
    justify-content: space-between;
}

.fcms-footer-links {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(154, 165, 181, 0.22);
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .fcms-footer-top,
    .fcms-footer-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.42rem;
        width: 100%;
    }

    .fcms-footer-links {
        margin-top: 0.6rem;
        padding-top: 0.6rem;
    }

    .fcms-footer-links > * {
        width: 100%;
    }
}

.navbar .navbar-text {
    color: #e6edf7 !important;
}
/* Mobile */
@media (max-width: 991.98px) {
    body.fcms-body {
        --fcms-topbar-h: 30px;
        --fcms-nav-offset: 74px;  
        --fcms-announcement-h: 0px;
    }
}


@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--fcms-border);
    }
}

@media (max-width: 576px) {
    .btn,
    .form-control,
    .form-select {
        min-height: 44px;
    }

    .fcms-planning-desktop {
        display: none;
    }

    .fcms-planning-mobile {
        display: block;
    }

    .fcms-mobile-day {
        border: 1px solid var(--fcms-border);
        border-radius: 0.65rem;
        background: #151d29;
        padding: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .fcms-mobile-day.is-today {
        border-color: rgba(34, 184, 207, 0.75);
        box-shadow: inset 0 0 0 1px rgba(34, 184, 207, 0.3);
    }

    .fcms-mobile-day-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 0.5rem;
        margin-bottom: 0.55rem;
        padding-bottom: 0.45rem;
        border-bottom: 1px solid rgba(154, 165, 181, 0.2);
    }

    .fcms-mobile-shifts {
        display: grid;
        gap: 0.5rem;
    }

    .fcms-mobile-shift {
        appearance: none;
        border: 1px solid rgba(154, 165, 181, 0.22);
        border-left: 4px solid var(--mobile-shift-accent, #0EA5E9);
        border-radius: 0.6rem;
        background: #101722;
        color: inherit;
        text-align: left;
        padding: 0.62rem 0.64rem;
        width: 100%;
    }

    .fcms-mobile-shift.presence-present {
        border-color: rgba(16, 185, 129, 0.45);
    }

    .fcms-mobile-shift.presence-absent {
        border-color: rgba(239, 68, 68, 0.45);
    }

    .fcms-mobile-shift.presence-mixed {
        border-color: rgba(245, 158, 11, 0.5);
    }

    .fcms-mobile-shift-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.28rem;
    }

    .fcms-mobile-shift-time {
        font-size: 0.8rem;
        font-weight: 700;
        color: #c7f6ff;
    }

.fcms-mobile-shift-staff {
    font-size: 0.68rem;
    color: var(--fcms-muted);
    white-space: nowrap;
}

.fcms-mobile-live-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.02rem 0.32rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffd6da;
    background: rgba(255, 77, 87, 0.2);
    border: 1px solid rgba(255, 77, 87, 0.45);
}

    .fcms-mobile-shift-title {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0.15rem;
    }

    .fcms-mobile-shift-location {
        font-size: 0.72rem;
        color: var(--fcms-muted);
        line-height: 1.2;
    }

    .fcms-shift-title {
        font-size: 0.66rem;
    }

    .fcms-shift-meta {
        font-size: 0.58rem;
    }

    .fcms-shift-meta.is-location,
    .fcms-shift-meta.is-slots {
        display: none;
    }

    main.container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .fcms-planning-desktop {
        display: none;
    }

    .fcms-planning-mobile {
        display: block;
    }

    .fcms-mobile-day {
        border: 1px solid var(--fcms-border);
        border-radius: 0.7rem;
        background: #151d29;
        padding: 0.8rem;
        margin-bottom: 0.85rem;
    }

    .fcms-mobile-day.is-today {
        border-color: rgba(34, 184, 207, 0.75);
        box-shadow: inset 0 0 0 1px rgba(34, 184, 207, 0.3);
    }

    .fcms-mobile-day-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 0.75rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(154, 165, 181, 0.2);
    }

    .fcms-mobile-shifts {
        display: grid;
        gap: 0.55rem;
    }

    .fcms-mobile-shift {
        appearance: none;
        border: 1px solid rgba(154, 165, 181, 0.22);
        border-left: 4px solid var(--mobile-shift-accent, #0EA5E9);
        border-radius: 0.65rem;
        background: #101722;
        color: inherit;
        text-align: left;
        padding: 0.66rem 0.72rem;
        width: 100%;
    }

    .fcms-mobile-shift.presence-present {
        border-color: rgba(16, 185, 129, 0.45);
    }

    .fcms-mobile-shift.presence-absent {
        border-color: rgba(239, 68, 68, 0.45);
    }

    .fcms-mobile-shift.presence-mixed {
        border-color: rgba(245, 158, 11, 0.5);
    }

    .fcms-mobile-shift-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.28rem;
    }

    .fcms-mobile-shift-time {
        font-size: 0.84rem;
        font-weight: 700;
        color: #c7f6ff;
    }

    .fcms-mobile-shift-staff {
        font-size: 0.72rem;
        color: var(--fcms-muted);
        white-space: nowrap;
    }

    .fcms-mobile-shift-title {
        font-size: 0.83rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0.15rem;
    }

    .fcms-mobile-shift-location {
        font-size: 0.74rem;
        color: var(--fcms-muted);
        line-height: 1.2;
    }
}

.fcms-planning-mobile .fcms-mobile-shift {
    position: relative;
    overflow: hidden;
    border-left-width: 1px !important;
    border-left-color: rgba(154, 165, 181, 0.22) !important;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--mobile-shift-accent, #0EA5E9) 14%, transparent) 0%, transparent 42%),
        #101722 !important;
}

.fcms-planning-mobile .fcms-mobile-shift::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2.15rem;
    height: 2.15rem;
    background: var(--mobile-shift-accent, #0EA5E9);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: 0.9;
    pointer-events: none;
}

.fcms-planning-mobile .fcms-mobile-shift::after {
    content: "";
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0 0 1px rgba(7, 11, 18, 0.38);
    pointer-events: none;
}

.fcms-planning-mobile .fcms-mobile-shift-top,
.fcms-planning-mobile .fcms-mobile-shift-title,
.fcms-planning-mobile .fcms-mobile-shift-location {
    position: relative;
    z-index: 1;
}

.fcms-planning-mobile .fcms-mobile-shift-top > .d-flex {
    position: relative;
    z-index: 2;
}

.fcms-planning-mobile .fcms-mobile-shift-staff {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.15rem;
    padding: 0.08rem 0.42rem;
    border: 1px solid rgba(154, 165, 181, 0.28);
    border-radius: 999px;
    background: rgba(9, 14, 22, 0.82);
    color: #dbeafe;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
}















.live-status-pill {
    display: inline-block;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.live-status-available {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.45);
    color: #86efac;
}

.live-status-on-call {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.45);
    color: #7dd3fc;
}

.live-status-in-shift {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.45);
    color: #93c5fd;
}

.live-status-task {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.45);
    color: #fcd34d;
}

.live-status-off-shift {
    background: rgba(34, 184, 207, 0.2);
    border-color: rgba(34, 184, 207, 0.45);
    color: #9ff4ff;
}

.live-status-busy {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.45);
    color: #fca5a5;
}
.fcms-live-status-toolbar {
    align-items: end;
}

.fcms-live-status-toolbar .form-label {
    font-size: 0.8rem;
    color: var(--fcms-muted);
}

.fcms-live-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.fcms-live-col {
    border: 1px solid var(--fcms-border);
    border-radius: 0.6rem;
    background: linear-gradient(180deg, rgba(24, 33, 47, 0.94) 0%, rgba(19, 27, 38, 0.95) 100%);
    overflow: hidden;
    min-height: 180px;
}

.fcms-live-col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(154, 165, 181, 0.22);
}

.fcms-live-col-count {
    font-size: 0.72rem;
    color: var(--fcms-muted);
    font-weight: 700;
}

.fcms-live-col-body {
    padding: 0.32rem;
    display: grid;
    gap: 0.26rem;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    max-height: 62vh;
    overflow: auto;
}

.fcms-live-card {
    border: 1px solid rgba(154, 165, 181, 0.24);
    border-radius: 0.38rem;
    background: rgba(13, 20, 31, 0.78);
    padding: 0.24rem 0.3rem;
}

.fcms-live-card.is-draggable {
    cursor: grab;
}

.fcms-live-card.is-draggable.is-dragging {
    opacity: 0.55;
    cursor: grabbing;
}

.fcms-live-col.is-drop-target {
    outline: 2px dashed rgba(34, 184, 207, 0.8);
    outline-offset: 3px;
}

.fcms-live-main {
    display: flex;
    gap: 0.42rem;
    align-items: baseline;
    min-width: 0;
}

.fcms-live-id {
    font-size: 0.72rem;
    color: #b5c5db;
    font-weight: 700;
    white-space: nowrap;
}

.fcms-live-id-link {
    text-decoration: none;
}

.fcms-live-id-link:hover .fcms-live-id,
.fcms-live-id-link:focus .fcms-live-id {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fcms-live-name {
    font-size: 0.8rem;
    color: #eff6ff;
    font-weight: 700;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fcms-live-meta {
    margin-top: 0.16rem;
    display: flex;
    align-items: center;
    gap: 0.22rem;
    flex-wrap: wrap;
}

.fcms-live-poles {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
}

.fcms-live-pole-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(154, 165, 181, 0.34);
    border-radius: 0.32rem;
    background: rgba(255, 255, 255, 0.04);
    color: #d9e4f6;
    cursor: pointer;
}

.fcms-live-pole-icon .fcms-pole-icon-img {
    width: 11px;
    height: 11px;
}

.fcms-live-pole-fallback {
    font-size: 0.62rem;
    font-weight: 800;
}

@media (max-width: 1399.98px) {
    .fcms-live-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .fcms-live-col-body {
        max-height: none;
        grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    }
}

.fcms-live-clock {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--fcms-border);
    border-radius: 999px;
    padding: 0.24rem 0.62rem;
    background: linear-gradient(180deg, rgba(20, 30, 46, 0.9) 0%, rgba(14, 20, 30, 0.92) 100%);
    color: #d7e6fb;
    font-size: 0.76rem;
    line-height: 1;
    white-space: nowrap;
}

.fcms-live-clock i {
    font-size: 0.78rem;
    color: #9dd6ff;
}

.fcms-live-clock-date {
    opacity: 0.82;
}

.fcms-live-clock-time {
    font-weight: 700;
    color: #f5fbff;
    font-variant-numeric: tabular-nums;
}

.fcms-navbar .dropdown-menu {
    min-width: 14rem;
    border-color: var(--fcms-border);
    background: linear-gradient(180deg, rgba(23, 32, 47, 0.98) 0%, rgba(17, 24, 36, 0.98) 100%);
}

.fcms-navbar .dropdown-item {
    color: #d8e4f7;
}

.fcms-navbar .dropdown-item:hover,
.fcms-navbar .dropdown-item:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fcms-navbar .dropdown-item.active,
.fcms-navbar .dropdown-item:active {
    color: #062028;
    background: var(--fcms-primary);
}

@media (max-width: 1399.98px) {
    .fcms-navbar .navbar-collapse > .d-flex {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.35rem;
        margin-top: 0.6rem;
    }
}
.fcms-lang-toggle {
    min-width: 5.75rem;
}

.fcms-lang-menu {
    min-width: 10.5rem;
}

.fcms-lang-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.fcms-lang-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.fcms-lang-flag-img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.fcms-self-signup-box {
    border: 1px solid rgba(34, 184, 207, 0.45);
    border-radius: 0.5rem;
    background: rgba(34, 184, 207, 0.14);
    color: #d8f7fb;
}




.fcms-planning-inline-controls {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fcms-planning-inline-left,
.fcms-planning-inline-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fcms-planning-view-dropdown .btn {
    min-width: 9rem;
}

.fcms-planning-view-dropdown .dropdown-menu {
    background: linear-gradient(180deg, rgba(23, 32, 47, 0.98) 0%, rgba(17, 24, 36, 0.98) 100%);
    border-color: var(--fcms-border);
    width: 100%;
    min-width: 15rem;
    max-width: min(92vw, 24rem);
    margin-top: 0.35rem;
    inset: auto auto auto 0 !important;
    top: 100% !important;
    transform: none !important;
}

.fcms-planning-view-dropdown .dropdown-header {
    color: #9fb4d2;
    white-space: normal;
}

.fcms-planning-view-dropdown .dropdown-item {
    color: #d8e4f7;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.fcms-planning-view-dropdown .dropdown-item:hover,
.fcms-planning-view-dropdown .dropdown-item:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fcms-planning-view-dropdown .dropdown-item.active,
.fcms-planning-view-dropdown .dropdown-item:active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.fcms-planning-view-dropdown .dropdown-divider {
    border-top-color: var(--fcms-border);
}

.fcms-planning-inline-left {
    margin-right: auto;
}

@media (max-width: 576px) {
    .fcms-planning-inline-controls {
        align-items: stretch;
        gap: 0.55rem;
    }

    .fcms-planning-inline-left,
    .fcms-planning-inline-right {
        width: 100%;
    }

    .fcms-planning-view-dropdown,
    .fcms-planning-view-dropdown .btn {
        width: 100%;
    }

    .fcms-planning-inline-right .btn {
        flex: 1 1 0;
        min-width: 0;
    }
}

.fcms-day-column.is-selected {
    border-color: rgba(34, 184, 207, 0.9);
    box-shadow: inset 0 0 0 1px rgba(34, 184, 207, 0.55);
}

.fcms-day-header-link {
    display: block;
    padding: 0.1rem 0.25rem;
    border-radius: 0.4rem;
    color: inherit;
    text-decoration: none;
}

.fcms-day-header-link:hover,
.fcms-day-header-link:focus {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
}

.fcms-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
    min-width: 0;
}

.fcms-brand-logo {
    width: 92px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 6px rgba(34, 184, 207, 0.18));
}

.fcms-brand-text {
    display: inline-block;
    max-width: min(42vw, 460px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 575.98px) {
    .fcms-brand-logo {
        width: 72px;
        height: auto;
    }

    .fcms-brand-text {
        max-width: 50vw;
        font-size: 0.92rem;
        line-height: 1.05;
    }
}




.fcms-logo-partnership {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    margin-left: -0.08rem;
}

.fcms-logo-x {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    color: #d9e6f8;
    opacity: 0.9;
    margin: 0;
}

.fcms-convention-logo {
    width: 120px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
    margin-left: -0.08rem;
}

@media (max-width: 575.98px) {
    .fcms-convention-logo {
        width: 92px;
        max-height: 34px;
        margin-left: -0.04rem;
    }

    .fcms-logo-partnership {
        gap: 0.06rem;
    }

    .fcms-logo-x {
        font-size: 0.72rem;
    }
}






.fcms-pole-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.fcms-pole-icon {
    font-size: 0.86rem;
    line-height: 1;
    color: inherit;
    opacity: 0.95;
}

.fcms-pole-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0.2rem;
}

.fcms-pole-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.12rem 0.45rem;
    border: 1px solid var(--fcms-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--fcms-text);
    font-size: 0.78rem;
    line-height: 1.15;
    max-width: 100%;
}

.fcms-pole-badge > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 16rem;
}

.fcms-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    height: var(--fcms-topbar-h);
    display: flex;
    align-items: center;
    background: rgba(6, 10, 16, 0.9);
    border-bottom: 1px solid rgba(46, 60, 84, 0.7);
    backdrop-filter: blur(8px);
}

.fcms-topbar .fcms-live-clock {
    padding: 0.16rem 0.5rem;
    font-size: 0.72rem;
    border-color: rgba(46, 60, 84, 0.75);
    background: rgba(18, 27, 41, 0.78);
}

.fcms-nav-actions {
    flex-wrap: nowrap;
}

.fcms-btn-compact {
    min-height: 32px;
    padding: 0.28rem 0.55rem;
    font-size: 0.78rem;
    line-height: 1.1;
    border-radius: 0.45rem;
}

.fcms-lang-toggle {
    min-width: auto;
}

.fcms-lang-flag {
    font-size: 0.82rem;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .fcms-nav-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .fcms-topbar .fcms-live-clock {
        padding: 0.12rem 0.4rem;
        font-size: 0.68rem;
    }.fcms-btn-compact {
        min-height: 30px;
        padding: 0.24rem 0.46rem;
        font-size: 0.74rem;
    }
}

.fcms-btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
}

.fcms-btn-compact i {
    font-size: 0.84rem;
    line-height: 1;
}

.fcms-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.fcms-lang-toggle::after {
    margin-left: 0.22rem;
    vertical-align: middle;
}

.fcms-lang-toggle .fcms-lang-flag {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .fcms-topbar .fcms-live-clock-date,
    .fcms-topbar .fcms-live-clock-dot {
        display: inline;
    }
}

#fcmsTopbarStatusForm.is-saving .fcms-topbar-status-select {
    opacity: 0.75;
}


.fcms-topbar-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

#fcmsTopbarStatusForm {
    margin: 0;
    min-width: 0;
    flex: 0 0 auto;
}

.fcms-topbar-status-select {
    width: 128px;
    min-width: 128px;
    max-width: 128px;
    height: 28px;
    padding: 0.14rem 1.5rem 0.14rem 0.46rem;
    font-size: 0.67rem;
    line-height: 1;
    color: #e8eef8;
    background: rgba(18, 27, 41, 0.88);
    border: 1px solid rgba(46, 60, 84, 0.85);
    border-radius: 999px;
    box-shadow: none;
    text-overflow: ellipsis;
}

.fcms-topbar-status-select option {
    color: #e8eef8;
    background: #0f1725;
}

.fcms-topbar-status-select:focus {
    border-color: rgba(34, 184, 207, 0.9);
    box-shadow: 0 0 0 0.16rem rgba(34, 184, 207, 0.18);
}

#fcmsTopbarStatusForm.status-available .fcms-topbar-status-select {
    background: rgba(16, 185, 129, 0.16);
    border-color: rgba(16, 185, 129, 0.45);
}

#fcmsTopbarStatusForm.status-on_call .fcms-topbar-status-select {
    background: rgba(14, 165, 233, 0.16);
    border-color: rgba(14, 165, 233, 0.45);
}

#fcmsTopbarStatusForm.status-in_shift .fcms-topbar-status-select {
    background: rgba(59, 130, 246, 0.16);
    border-color: rgba(59, 130, 246, 0.45);
}

#fcmsTopbarStatusForm.status-task_in_progress .fcms-topbar-status-select {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.45);
}

#fcmsTopbarStatusForm.status-off_shift_available .fcms-topbar-status-select {
    background: rgba(34, 184, 207, 0.16);
    border-color: rgba(34, 184, 207, 0.45);
}

#fcmsTopbarStatusForm.status-busy .fcms-topbar-status-select {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.45);
}

@media (max-width: 991.98px) {
    .fcms-topbar-center {
        gap: 0.24rem;
    }

    .fcms-topbar-status-select {
        width: 112px;
        min-width: 112px;
        max-width: 112px;
        height: 26px;
        font-size: 0.62rem;
        padding: 0.1rem 1.25rem 0.1rem 0.38rem;
    }
}

@media (max-width: 575.98px) {
    .fcms-topbar .container {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .fcms-topbar-center {
        width: 100%;
        justify-content: space-between;
        gap: 0.14rem;
    }

    .fcms-topbar .fcms-live-clock {
        min-width: 0;
        max-width: calc(100% - 102px);
        padding: 0.1rem 0.35rem;
        font-size: 0.62rem;
    }

    .fcms-topbar .fcms-live-clock-date {
        display: inline-block;
        max-width: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: bottom;
    }

    .fcms-topbar-status-select {
        width: 96px;
        min-width: 96px;
        max-width: 96px;
        font-size: 0.6rem;
    }
}
/* Topbar strict compact override */
.fcms-topbar .container {
    overflow: hidden;
}

.fcms-topbar-center {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.26rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.fcms-topbar .fcms-live-clock {
    height: 28px !important;
    padding: 0.12rem 0.44rem !important;
    display: inline-flex !important;
    align-items: center !important;
    background: linear-gradient(180deg, rgba(20, 30, 46, 0.9) 0%, rgba(14, 20, 30, 0.92) 100%) !important;
    border: 1px solid var(--fcms-border) !important;
    border-radius: 999px !important;
    max-width: calc(100% - 104px) !important;
    overflow: hidden !important;
}

.fcms-topbar .fcms-live-clock-date {
    display: inline-block !important;
    max-width: 74px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

#fcmsTopbarStatusForm {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: 98px !important;
    min-width: 98px !important;
    max-width: 98px !important;
    overflow: hidden !important;
}

.fcms-topbar-status-select {
    width: 98px !important;
    min-width: 98px !important;
    max-width: 98px !important;
    height: 28px !important;
    padding: 0.12rem 1.25rem 0.12rem 0.4rem !important;
    font-size: 0.62rem !important;
    line-height: 1 !important;
    color: #e8eef8 !important;
    background: linear-gradient(180deg, rgba(20, 30, 46, 0.9) 0%, rgba(14, 20, 30, 0.92) 100%) !important;
    border: 1px solid var(--fcms-border) !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    text-overflow: ellipsis !important;
}

.fcms-topbar-status-select option {
    color: #e8eef8 !important;
    background: #0f1725 !important;
}

@media (min-width: 992px) {
    #fcmsTopbarStatusForm,
    .fcms-topbar-status-select {
        width: 122px !important;
        min-width: 122px !important;
        max-width: 122px !important;
        font-size: 0.68rem !important;
    }

    .fcms-topbar .fcms-live-clock {
        max-width: calc(100% - 130px) !important;
    }
}
/* Mobile topbar hard overflow fix */
@media (max-width: 575.98px) {
    .fcms-topbar {
        overflow: hidden;
    }

    .fcms-topbar .container {
        padding-left: 0.28rem !important;
        padding-right: 0.28rem !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .fcms-topbar-center {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 40vw) !important;
        align-items: center !important;
        gap: 0.28rem !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .fcms-topbar .fcms-live-clock {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.61rem !important;
        padding: 0.12rem 0.32rem !important;
    }

    #fcmsTopbarStatusForm {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .fcms-topbar-status-select {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 0.12rem 1.1rem 0.12rem 0.34rem !important;
        font-size: 0.6rem !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
    }
}

/* Mobile topbar tuning: smaller and uniform pills with full datetime */
@media (max-width: 575.98px) {
    .fcms-topbar {
        overflow: hidden !important;
    }

    .fcms-topbar .container {
        padding-left: 0.22rem !important;
        padding-right: 0.22rem !important;
    }

    .fcms-topbar-center {
        display: grid !important;
        grid-template-columns: minmax(0, 58%) minmax(0, 42%) !important;
        align-items: center !important;
        gap: 0.2rem !important;
    }

    .fcms-topbar .fcms-live-clock,
    .fcms-topbar-status-select {
        height: 26px !important;
        min-height: 26px !important;
        border-radius: 999px !important;
    }

    .fcms-topbar .fcms-live-clock {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 0.1rem 0.28rem !important;
        justify-content: center !important;
        font-size: 0.56rem !important;
        gap: 0.14rem !important;
    }

    .fcms-topbar .fcms-live-clock-date,
    .fcms-topbar .fcms-live-clock-time {
        min-width: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    #fcmsTopbarStatusForm {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .fcms-topbar-status-select {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        font-size: 0.56rem !important;
        padding: 0.1rem 1.02rem 0.1rem 0.3rem !important;
        line-height: 1 !important;
        text-overflow: ellipsis !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
    }
}

/* Topbar status: centered label + status color pill */
#fcmsTopbarStatusForm {
    display: inline-flex;
    align-items: center;
}

.fcms-topbar-status-select {
    text-align: center !important;
    text-align-last: center !important;
    -moz-text-align-last: center !important;
    padding-left: 0.5rem !important;
}

.fcms-topbar-status-select option {
    text-align: left;
}

#fcmsTopbarStatusForm.status-available .fcms-topbar-status-select {
    color: #c9ffe4 !important;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.28) 0%, rgba(16, 185, 129, 0.18) 100%) !important;
    border-color: rgba(16, 185, 129, 0.6) !important;
}

#fcmsTopbarStatusForm.status-on_call .fcms-topbar-status-select {
    color: #d8f6ff !important;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.28) 0%, rgba(14, 165, 233, 0.18) 100%) !important;
    border-color: rgba(14, 165, 233, 0.62) !important;
}

#fcmsTopbarStatusForm.status-in_shift .fcms-topbar-status-select {
    color: #d9e7ff !important;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.28) 0%, rgba(59, 130, 246, 0.18) 100%) !important;
    border-color: rgba(59, 130, 246, 0.62) !important;
}

#fcmsTopbarStatusForm.status-task_in_progress .fcms-topbar-status-select {
    color: #fff2d6 !important;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.30) 0%, rgba(245, 158, 11, 0.20) 100%) !important;
    border-color: rgba(245, 158, 11, 0.62) !important;
}

#fcmsTopbarStatusForm.status-off_shift_available .fcms-topbar-status-select {
    color: #d7fbff !important;
    background: linear-gradient(180deg, rgba(34, 184, 207, 0.30) 0%, rgba(34, 184, 207, 0.20) 100%) !important;
    border-color: rgba(34, 184, 207, 0.62) !important;
}

#fcmsTopbarStatusForm.status-busy .fcms-topbar-status-select {
    color: #ffe0e0 !important;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.30) 0%, rgba(239, 68, 68, 0.20) 100%) !important;
    border-color: rgba(239, 68, 68, 0.62) !important;
}

/* Topbar refined compact look */
body.fcms-body {
    --fcms-topbar-h: 30px;
}

.fcms-topbar {
    height: var(--fcms-topbar-h) !important;
    min-height: var(--fcms-topbar-h) !important;
    background: rgba(8, 12, 18, 0.96) !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16) !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
}

.fcms-topbar .container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}

.fcms-topbar-center {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.fcms-topbar .fcms-live-clock {
    height: auto !important;
    max-width: none !important;
    padding: 0 !important;
    gap: 0.28rem !important;
    color: #aebbd0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

.fcms-topbar .fcms-live-clock i {
    color: #7f8da3 !important;
    font-size: 0.74rem !important;
    opacity: 0.95;
}

.fcms-topbar .fcms-live-clock-date,
.fcms-topbar .fcms-live-clock-time {
    max-width: none !important;
    color: inherit !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-weight: 500 !important;
}

.fcms-topbar .fcms-live-clock-time {
    color: #d5deeb !important;
    font-variant-numeric: tabular-nums;
}

#fcmsTopbarStatusForm {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
}

.fcms-topbar-status-select {
    width: fit-content !important;
    min-width: 6.4rem !important;
    max-width: 10.5rem !important;
    height: 22px !important;
    min-height: 22px !important;
    padding: 0 1.35rem 0 0.75rem !important;
    color: #d9e2ef !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    border-radius: 0.35rem !important;
    box-shadow: none !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
    text-align: center !important;
    text-align-last: center !important;
}

.fcms-topbar-status-select:focus {
    border-color: rgba(154, 234, 245, 0.55) !important;
    box-shadow: 0 0 0 0.12rem rgba(154, 234, 245, 0.12) !important;
}

#fcmsTopbarStatusForm.status-available .fcms-topbar-status-select {
    border-color: rgba(16, 185, 129, 0.48) !important;
    background: rgba(16, 185, 129, 0.08) !important;
    color: #d9f7e8 !important;
}

#fcmsTopbarStatusForm.status-on_call .fcms-topbar-status-select,
#fcmsTopbarStatusForm.status-in_shift .fcms-topbar-status-select,
#fcmsTopbarStatusForm.status-off_shift_available .fcms-topbar-status-select {
    border-color: rgba(125, 211, 252, 0.42) !important;
    background: rgba(125, 211, 252, 0.08) !important;
    color: #d9f2ff !important;
}

#fcmsTopbarStatusForm.status-task_in_progress .fcms-topbar-status-select {
    border-color: rgba(245, 158, 11, 0.45) !important;
    background: rgba(245, 158, 11, 0.08) !important;
    color: #fff1d2 !important;
}

#fcmsTopbarStatusForm.status-busy .fcms-topbar-status-select {
    border-color: rgba(239, 68, 68, 0.45) !important;
    background: rgba(239, 68, 68, 0.08) !important;
    color: #ffe1e1 !important;
}

@media (max-width: 575.98px) {
    body.fcms-body {
        --fcms-topbar-h: 28px;
    }

    .fcms-topbar .container {
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
    }

    .fcms-topbar-center {
        display: flex !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    .fcms-topbar .fcms-live-clock {
        width: auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 7rem) !important;
        justify-content: flex-start !important;
        font-size: 0.58rem !important;
        gap: 0.16rem !important;
    }

    .fcms-topbar .fcms-live-clock-date {
        display: inline-block !important;
        max-width: 4.6rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .fcms-topbar .fcms-live-clock-dot {
        display: inline !important;
    }

    .fcms-topbar-status-select {
        min-width: 6.4rem !important;
        max-width: 6.8rem !important;
        height: 22px !important;
        min-height: 22px !important;
        font-size: 0.6rem !important;
        padding-left: 0.52rem !important;
        padding-right: 1.12rem !important;
    }
}

/* Mobile lang dropdown viewport safety */
@media (max-width: 575.98px) {
    .fcms-nav-actions .dropdown {
        position: static;
    }

    .fcms-lang-menu,
    .fcms-lang-menu.dropdown-menu-end,
    .fcms-lang-menu[data-bs-popper] {
        right: 0.4rem !important;
        left: auto !important;
        transform: translate3d(0, var(--bs-dropdown-spacer), 0) !important;
        min-width: 0 !important;
        width: min(92vw, 220px) !important;
        max-width: calc(100vw - 0.8rem) !important;
    }

    .fcms-lang-menu .dropdown-item {
        white-space: normal;
        word-break: break-word;
    }
}

/* Header announcement ticker */
.fcms-announcement-bar {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--fcms-topbar-h) + var(--fcms-nav-offset));
    z-index: 1029;
    margin-top: 0;
    border-bottom: 1px solid var(--fcms-border);
    background: linear-gradient(180deg, rgba(17, 24, 37, 0.95) 0%, rgba(13, 19, 29, 0.96) 100%);
}

.fcms-announcement-track-wrap {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.18rem 0;
    min-height: 1.05rem;
}

.fcms-announcement-track {
    position: absolute;
    left: 100%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    color: #d6e8ff;
    font-size: 0.76rem;
    white-space: nowrap;
    will-change: transform;
    transform: translate(0, -50%);
    animation: fcmsTickerSingle 40s linear infinite;
}

.fcms-announcement-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.fcms-announcement-item:not(:last-child)::after {
    content: "|";
    display: inline-block;
    margin-inline: 1rem;
    opacity: 0.72;
}

@keyframes fcmsTickerSingle {
    0% {
        transform: translate(0, -50%);
    }
    100% {
        transform: translate(calc(-100% - 100vw), -50%);
    }
}

@media (max-width: 575.98px) {
    .fcms-announcement-track-wrap {
        padding: 0.14rem 0;
    }

    .fcms-announcement-track {
        font-size: 0.7rem;
        animation-duration: 34s;
    }

    .fcms-announcement-item:not(:last-child)::after {
        margin-inline: 0.72rem;
    }
}

/* Docs */
.fcms-docs-accordion .accordion-item {
    border: 1px solid var(--fcms-border);
    background: linear-gradient(180deg, rgba(31, 42, 58, 0.98) 0%, rgba(27, 37, 52, 0.98) 100%);
    border-radius: 0.75rem;
    overflow: hidden;
}

.fcms-docs-accordion .accordion-button {
    color: var(--fcms-text);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
}

.fcms-docs-accordion .accordion-button:not(.collapsed) {
    color: #f4f8ff;
    background: rgba(34, 184, 207, 0.12);
    box-shadow: inset 0 -1px 0 rgba(34, 184, 207, 0.18);
}

.fcms-docs-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 184, 207, 0.22);
}

.fcms-docs-accordion .accordion-button::after {
    filter: invert(88%) sepia(8%) saturate(386%) hue-rotate(181deg) brightness(98%) contrast(93%);
}

.fcms-docs-accordion-body {
    background: transparent;
}

.fcms-docs-video-slot {
    border-color: var(--fcms-border) !important;
    background: rgba(20, 29, 43, 0.65);
}
.fcms-docs-accordion {
    --bs-accordion-bg: #1b2534;
    --bs-accordion-color: var(--fcms-text);
    --bs-accordion-border-color: var(--fcms-border);
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.03);
    --bs-accordion-btn-color: var(--fcms-text);
    --bs-accordion-active-bg: rgba(34, 184, 207, 0.12);
    --bs-accordion-active-color: #f4f8ff;
}

/* Docs hard override (prevent Bootstrap white accordion blocks) */
.fcms-docs-accordion .accordion-item,
.fcms-docs-accordion .accordion-item.mb-2,
.fcms-docs-accordion .accordion-collapse,
.fcms-docs-accordion .accordion-body {
    background: linear-gradient(180deg, rgba(31, 42, 58, 0.98) 0%, rgba(27, 37, 52, 0.98) 100%) !important;
    background-color: #1b2534 !important;
    color: var(--fcms-text) !important;
    border-color: var(--fcms-border) !important;
}

.fcms-docs-accordion .accordion-button,
.fcms-docs-accordion .accordion-button.collapsed {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: var(--fcms-text) !important;
}

.fcms-docs-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(34, 184, 207, 0.12) !important;
    color: #f4f8ff !important;
}

/* Page action buttons mobile responsiveness */
.fcms-page-actions-buttons {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 575.98px) {
    .fcms-page-actions {
        align-items: stretch !important;
        gap: 0.7rem;
    }

    .fcms-page-actions > .h4 {
        width: 100%;
    }

    .fcms-page-actions-buttons:not(.d-none) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem !important;
        width: 100%;
    }

    .fcms-page-actions-buttons:not(.d-none) .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .fcms-page-actions-buttons:not(.d-none) {
        grid-template-columns: 1fr;
    }
}

.fcms-page-actions .dropdown-menu {
    background: linear-gradient(180deg, rgba(23, 32, 47, 0.98) 0%, rgba(17, 24, 36, 0.98) 100%);
    border-color: var(--fcms-border);
    max-width: 100%;
    overflow-x: hidden;
}

.fcms-page-actions .dropdown-item {
    color: #d8e4f7;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.fcms-page-actions .dropdown-item:hover,
.fcms-page-actions .dropdown-item:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fcms-docs-video-slot .video-js {
    width: 100%;
    min-height: 260px;
    border: 1px solid var(--fcms-border);
    border-radius: 0.6rem;
    overflow: hidden;
    background: #0f1724;
}

.fcms-docs-video-slot .video-js.vjs-fluid {
    padding-top: 56.25%;
}

.fcms-docs-video-slot .vjs-control-bar,
.fcms-docs-video-slot .vjs-big-play-button {
    background: rgba(6, 12, 20, 0.72);
}

.fcms-docs-video-slot .vjs-big-play-button {
    border-color: rgba(255, 255, 255, 0.35);
}

.fcms-docs-video-slot .vjs-play-progress,
.fcms-docs-video-slot .vjs-volume-level {
    background-color: var(--fcms-primary);
}

@media (max-width: 576px) {
    .fcms-docs-video-slot .video-js {
        min-height: 200px;
    }
}


