:root {
    --bg: #efe4de;
    --card: #ffffff;
    --line: #d8c8c2;
    --text: #111827;
    --muted: #5f7999;
    --primary: #ea3b3b;
    --accent: #f99c25;
    --success: #619300;
    --danger: #ea3b3b;
    --info: #83aee1;
    --soft-blue: #d9f3ff;
    --soft-rose: #e0a79f;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: radial-gradient(circle at top right, #f9f2ef 0%, var(--bg) 50%);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
    font-family: "Geologica", sans-serif;
}

a {
    color: #2563eb;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

a:hover {
    text-decoration: underline;
}

.app-shell {
    max-width: 1320px;
    margin: 20px auto;
    padding: 0 14px 22px;
}

.topbar,
.statusbar,
.footerbar,
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.topbar,
.statusbar,
.footerbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
}

.topbar {
    font-size: 0.9rem;
}

.topbar__left {
    color: var(--muted);
}

.topbar__left strong {
    color: var(--text);
}

.topbar__links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar__campaign-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #44566f;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.topbar__sep {
    color: #8aa0bd;
}

.profile-menu {
    position: relative;
}

.profile-menu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 36px;
    padding: 0 10px 0 6px;
    border-radius: 999px;
    border: 1px solid #d8e1ef;
    background: #f8fbff;
    color: #44566f;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    cursor: pointer;
}

.profile-menu__trigger:hover {
    text-decoration: none;
    background: #eef5ff;
    border-color: #b8cce8;
}

.profile-menu__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8aa7cb;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
}

.profile-menu__label {
    font-size: 0.8rem;
}

.profile-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    border-radius: 10px;
    border: 1px solid #d8e1ef;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
    padding: 6px;
    display: none;
    z-index: 20;
}

.profile-menu.is-open .profile-menu__panel {
    display: block;
}

.profile-menu__item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    color: #34485f;
    font-size: 0.8rem;
    text-transform: none;
}

.profile-menu__item:hover {
    text-decoration: none;
    background: #f3f7fd;
}

.profile-menu__item--danger {
    color: #b92727;
}

.profile-menu__item--danger:hover {
    background: #fff1ee;
}

.about-session-modal-card {
    max-width: 540px;
}

.about-session-details {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d8e1ef;
    background: #f8fbff;
    color: #34485f;
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    white-space: pre-wrap;
}

.statusbar {
    margin-top: 0;
    position: relative;
    justify-content: center;
    min-height: 62px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.brand__logo {
    height: 36px;
    width: auto;
    display: block;
}

.brand__badge {
    font-size: 0.72rem;
    text-transform: uppercase;
    background: #fce7d6;
    color: #57423f;
    padding: 4px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

.statusbar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 0.85rem;
    align-items: center;
    justify-content: center;
}

.statusbar__profile {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.notification-menu {
    position: relative;
}

.notification-menu__trigger {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d8e1ef;
    background: #f8fbff;
    color: #44566f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.notification-menu__trigger:hover {
    background: #eef5ff;
    border-color: #b8cce8;
}

.notification-menu__badge {
    position: absolute;
    right: -3px;
    top: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ea3b3b;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.notification-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 250px;
    border-radius: 10px;
    border: 1px solid #d8e1ef;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.14);
    padding: 6px;
    display: none;
    z-index: 20;
}

.notification-menu.is-open .notification-menu__panel {
    display: block;
}

.notification-menu__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 8px;
    text-transform: none;
    color: #34485f;
    font-size: 0.8rem;
}

.notification-menu__item span {
    color: #60738d;
}

.notification-menu__item:hover {
    text-decoration: none;
    background: #f3f7fd;
}

.statusbar__meta-item {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d8e1ef;
    border-radius: 10px;
    background: #f7faff;
    color: #50647d;
    font-weight: 600;
}

.live-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #ffd59a;
    border-radius: 999px;
    background: #fff5e6;
    color: #b26400;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.workspace {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 12px;
}

.card {
    padding: 16px;
}

.status-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.action-rail h2 {
    margin: 0;
    font-size: 0.92rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.agent-state {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5f7999;
    font-weight: 700;
}

.agent-state.is-resumed {
    color: #619300;
}

.agent-state.is-paused {
    color: #6c757d;
}

.pause-timer {
    display: none;
    margin: 0;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #cfd8e6;
    background: #f6f9ff;
    color: #435976;
    font-family: "Geologica", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pause-timer.is-visible {
    display: inline-flex;
    align-items: center;
}

.action-grid {
    display: grid;
    gap: 8px;
}

.action-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-grid--top .checkbox-action {
    grid-column: 1 / -1;
}

.action-group--primary {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--line);
}

.action-group {
    margin-bottom: 10px;
}

.action-group--recording {
    margin-top: 4px;
    margin-bottom: 30px;
}

.action-group--script-workflow {
    margin-bottom: 12px;
}

.script-webform-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.action-group--park-transfer {
    margin-top: 30px;
    margin-bottom: 30px;
}

.action-group--hangup {
    margin-bottom: 14px;
}

.action-group--dial-row {
    margin-top: 8px;
    margin-bottom: 10px;
}

.sidebar-dial-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sidebar-dial-row .btn {
    font-size: 0.78rem;
    padding: 8px 10px;
}

.action-group__label {
    margin: 0 0 6px;
    font-family: "Geologica", sans-serif;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.recording-file-name {
    margin-left: 6px;
    font-family: "Roboto", sans-serif;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
}

.checkbox-action {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5f7999;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.83rem;
    padding: 2px 2px 4px;
}

.checkbox-action input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.btn i {
    font-size: 0.95rem;
    line-height: 1;
}

.btn--muted {
    background: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
}

.btn--outline-muted {
    background: #ffffff;
    border-color: #6c757d;
    color: #6c757d;
}

.btn--success {
    background: #619300;
    border-color: #619300;
    color: #ffffff;
}

.btn--outline-success {
    background: #ffffff;
    border-color: #619300;
    color: #619300;
}

.btn--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn--secondary {
    background: #e0a79f;
    border-color: #e0a79f;
    color: #57423f;
}

.btn--danger {
    background: #ea3b3b;
    border-color: #ea3b3b;
    color: #ffffff;
}

.btn--ghost {
    background: #ffffff;
    border-color: #83aee1;
    color: #5f7999;
}

.btn.is-active,
.btn[data-toggle-button="true"][aria-pressed="true"] {
    box-shadow: 0 0 0 0.2rem rgba(131, 174, 225, 0.35);
}

.btn--warning {
    background: #f99c25;
    border-color: #f99c25;
    color: #212529;
}

.btn--info {
    background: #83aee1;
    border-color: #83aee1;
    color: #212529;
}

.btn--light {
    background: #efe4de;
    border-color: #efe4de;
    color: #57423f;
}

.btn--dark {
    background: #57423f;
    border-color: #57423f;
    color: #ffffff;
}

.btn--link {
    background: transparent;
    border-color: transparent;
    color: #5f7999;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding-left: 6px;
    padding-right: 6px;
}

.btn--recording {
    background: linear-gradient(135deg, #ea3b3b 0%, #f99c25 100%);
    border-color: #e56b33;
    color: #ffffff;
}

.recording-wave {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.recording-wave span {
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    animation: wavePulse 0.9s ease-in-out infinite;
    transform-origin: bottom;
}

.recording-wave span:nth-child(2) {
    animation-delay: 0.12s;
}

.recording-wave span:nth-child(3) {
    animation-delay: 0.24s;
}

.recording-wave span:nth-child(4) {
    animation-delay: 0.36s;
}

.btn--recording.is-recording .recording-wave {
    display: inline-flex;
}

@keyframes wavePulse {
    0%,
    100% {
        transform: scaleY(0.45);
        opacity: 0.75;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.btn--neutral-outline {
    background: #ffffff;
    border-color: #b8bec8;
    color: #5f7999;
}

.btn--dtmf-purple {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: #ffffff;
}

.btn--park-playing {
    background: #22a35a;
    border-color: #22a35a;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(34, 163, 90, 0.35);
    animation: parkGlow 1.4s ease-out infinite;
}

.park-music-wave {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.park-music-wave span {
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    animation: wavePulse 0.9s ease-in-out infinite;
    transform-origin: bottom;
}

.park-music-wave span:nth-child(2) {
    animation-delay: 0.1s;
}

.park-music-wave span:nth-child(3) {
    animation-delay: 0.2s;
}

.park-music-wave span:nth-child(4) {
    animation-delay: 0.3s;
}

.btn[data-park-call="true"].is-park-playing .park-music-wave {
    display: inline-flex;
}

@keyframes parkGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 163, 90, 0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 163, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 163, 90, 0);
    }
}

.volume-controls {
    display: block;
    margin-top: 12px;
}

.volume-slider {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 8px;
    color: #5f7999;
}

.volume-slider input[type="range"] {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    height: 6px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: linear-gradient(90deg, #ea3b3b 0%, #f99c25 100%) no-repeat, #d1d5db;
    background-size: 70% 100%, 100% 100%;
    cursor: pointer;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #ea3b3b;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.25);
}

.volume-slider input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    border: 0;
    background: #d1d5db;
}

.volume-slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #ea3b3b;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.25);
}

.panel-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.main-panel h1 {
    font-size: 1.2rem;
    margin: 14px 0;
}

.page-title-center {
    text-align: center;
    font-size: 30px;
}

.customer-form {
    display: grid;
    gap: 10px;
}

.form-row {
    display: grid;
    gap: 10px;
}

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

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

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

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

.field-group {
    display: grid;
    gap: 5px;
}

.field-group--inline {
    align-content: end;
}

.field-group--button-row .btn {
    width: 140px;
}

.field-group label {
    font-size: 0.76rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.04em;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 0.9rem;
    font-family: "Roboto", sans-serif;
    background: #fcfdff;
}

textarea {
    min-height: 96px;
    resize: vertical;
}

.quick-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
}

.subsection-title {
    margin: 16px 0 2px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.submit-btn {
    width: 220px;
    justify-self: start;
}

.footerbar {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-sep {
    margin-left: 10px;
}

.hotkeys-pill {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 8px 10px;
    background: #f9fafb;
    color: #374151;
    font-weight: 700;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999;
}

.modal-backdrop.is-open {
    display: flex;
}

.modal-card {
    width: min(760px, 95vw);
    max-height: 90vh;
    overflow: auto;
    background: #f4f6f8;
    border: 1px solid #d9dee5;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    padding: 18px;
}

.modal-card--compact {
    width: min(460px, 95vw);
}

.modal-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.manual-dial-form {
    display: grid;
    gap: 10px;
}

.manual-dial-note {
    margin: 0 0 6px;
    color: #5f7999;
    font-size: 0.86rem;
}

.manual-checkbox {
    justify-self: start;
}

.manual-actions {
    justify-content: center;
}

.transfer-mini-modal {
    width: min(340px, 92vw);
    background: #fff;
    border: 1px solid #d8c8c2;
    border-radius: 10px;
    padding: 10px 12px 12px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.22);
    text-align: center;
}

.transfer-mini-modal h3 {
    margin: 0 0 8px;
    font-size: 0.88rem;
    color: #57423f;
}

.transfer-lines {
    border: 1px solid #d8c8c2;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.transfer-line {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    font-size: 0.82rem;
    background: #fff;
}

.transfer-line + .transfer-line {
    border-top: 1px solid #e7dbd6;
}

.transfer-line a {
    text-transform: none;
    justify-self: start;
}

.transfer-line--active {
    background: #f0f7ff;
}

.transfer-line--highlight {
    background: #fff5df;
}

.transfer-status-flags {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.74rem;
    color: #5f7999;
    text-transform: uppercase;
}

.transfer-status-flags input {
    width: 12px;
    height: 12px;
}

.transfer-close-link {
    font-size: 0.84rem;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #d9dee5;
    border-radius: 10px;
    background: #eef1f4;
    margin-bottom: 14px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.02rem;
    color: #4b5563;
}

.transfer-form {
    display: grid;
    gap: 10px;
}

.transfer-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 12px;
    align-items: center;
}

.transfer-row label {
    justify-self: end;
    font-family: "Geologica", sans-serif;
    font-size: 0.88rem;
    color: #4b5563;
}

.modal-close {
    width: 34px;
    height: 34px;
}

.script-modal-card {
    width: min(1020px, 96vw);
    height: min(78vh, 620px);
    background: #f6f1ee;
    border: 1px solid #d8c8c2;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
    display: grid;
    grid-template-rows: auto 1fr;
}

.script-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #e5d8d3;
}

.script-modal-header h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #57423f;
}

.script-modal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.circle-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #b8bec8;
    background: #ffffff;
    color: #5f7999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.circle-close-btn:hover {
    background: #f3f4f6;
}

.script-modal-body {
    padding: 14px;
    overflow: auto;
    color: #5f7999;
    line-height: 1.6;
    font-size: 0.92rem;
}

.disposition-screen {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(239, 228, 222, 0.95);
    display: none;
    overflow: auto;
    padding: 24px;
}

.disposition-screen.is-open {
    display: block;
}

.disposition-card {
    max-width: 980px;
    margin: 0 auto;
    background: #f8f2ef;
    border: 1px solid #e0c7bb;
    border-radius: 12px;
    padding: 18px;
}

.disposition-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.disposition-header h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.disposition-header h2 span {
    color: var(--muted);
}

.disposition-header__actions {
    display: flex;
    gap: 8px;
}

.disposition-card h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    color: var(--primary);
}

.disposition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.disposition-column {
    background: #d9f3ff;
    border: 1px solid #83aee1;
    border-radius: 10px;
    min-height: 220px;
    padding: 10px;
    display: grid;
    align-content: start;
    gap: 8px;
}

.disposition-item {
    background: transparent;
    border: 0;
    text-align: left;
    color: #5f7999;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0;
}

.disposition-footer {
    margin-top: 16px;
    display: grid;
    justify-items: center;
    gap: 8px;
}

.disposition-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
}

.disposition-checkbox input {
    width: 14px;
    height: 14px;
}

.disposition-footer__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@media (max-width: 760px) {
    .panel-header,
    .columns-2,
    .columns-3,
    .columns-4 {
        grid-template-columns: 1fr;
    }
}
