:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #eef3f6;
    --text: #14212b;
    --muted: #667787;
    --border: #d7e0e7;
    --accent: #0f6f78;
    --accent-dark: #0a4d54;
    --danger: #b3261e;
    --construction: #df5f18;
    --event: #0f6f78;
    --hazard: #c62828;
    --other: #56616f;
    --shadow: 0 18px 45px rgba(19, 35, 48, 0.12);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 76px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 15px;
}

h1,
h2,
p {
    margin: 0;
}

h1 {
    font-size: 18px;
    line-height: 1.2;
}

.brand p,
.panel-head p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 3px;
}

.toolbar {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
}

label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 11px;
    background: white;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 111, 120, 0.14);
}

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

.search {
    min-width: min(360px, 34vw);
}

.primary-button,
.secondary-button,
.danger-button,
.icon-button {
    border: 0;
    border-radius: 8px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 800;
}

.secondary-link {
    min-height: 40px;
    border-radius: 8px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.secondary-link:hover {
    background: #e3ecef;
}

.popup-edit-link {
    width: 100%;
}

.primary-button {
    color: white;
    background: var(--accent);
}

.primary-button:hover {
    background: var(--accent-dark);
}

.secondary-button {
    background: var(--surface-soft);
    color: var(--accent-dark);
}

.danger-button {
    color: white;
    background: var(--danger);
}

.icon-button {
    width: 36px;
    min-height: 36px;
    padding: 0;
    color: var(--muted);
    background: var(--surface-soft);
    font-size: 24px;
    line-height: 1;
}

.workspace {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) 390px;
    overflow: hidden;
}

.facility-panel,
.timeline-panel {
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow: auto;
    overflow-x: hidden;
    z-index: 5;
}

.timeline-panel {
    border-right: 0;
    border-left: 1px solid var(--border);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
}

.facility-panel {
    position: absolute;
    inset: 0 390px 0 auto;
    width: 430px;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 1200;
    transform: translateX(0);
    transition: transform 180ms ease;
}

.facility-panel.is-collapsed {
    transform: translateX(110%);
    pointer-events: none;
}

.panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
}

.panel-head h2 {
    font-size: 16px;
    line-height: 1.25;
}

form {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.facility-form {
    border-top: 1px solid var(--border);
}

.facility-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.facility-list {
    max-height: 220px;
    overflow: auto;
    border-bottom: 1px solid var(--border);
}

.facility-list-empty {
    padding: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.facility-row {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 18px;
    background: var(--surface);
    color: var(--text);
    text-align: left;
}

.facility-row:hover,
.facility-row.is-selected {
    background: #f6fafb;
}

.facility-row-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.facility-row-title {
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
}

.facility-row-meta {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.checkbox-label {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: end;
    padding: 10px 0;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
}

.toolbar-checkbox {
    align-self: end;
    min-height: 40px;
    padding: 0 4px;
    color: var(--text);
}

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

.draw-hint {
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

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

.form-actions {
    display: flex;
    gap: 10px;
}

.form-actions .primary-button {
    flex: 1;
}

.form-message {
    min-height: 18px;
    color: var(--accent-dark);
    font-size: 13px;
}

.map-section {
    position: relative;
    min-width: 0;
}

#map {
    height: calc(100vh - 76px);
    width: 100%;
    background: #dde7ec;
}

.legend {
    position: absolute;
    left: 16px;
    bottom: 20px;
    z-index: 500;
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.map-search-message {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 500;
    max-width: min(520px, calc(100% - 32px));
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.map-message-close {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 6px;
    display: grid;
    place-items: center;
    padding: 0;
    background: #ffe3df;
    color: var(--danger);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.map-message-close:hover {
    background: var(--danger);
    color: #ffffff;
}

.geometry-map-panel {
    position: fixed;
    top: 96px;
    left: 50%;
    z-index: 1600;
    transform: translateX(-50%);
    width: min(520px, calc(100vw - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.geometry-map-panel strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.geometry-map-panel p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot,
.legend-line,
.legend-square {
    display: inline-block;
    flex: 0 0 auto;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-line {
    width: 20px;
    height: 4px;
    border-radius: 3px;
}

.legend-square {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}

.construction {
    background: var(--construction);
}

.event {
    background: var(--event);
}

.hazard {
    background: var(--hazard);
}

.other {
    background: var(--other);
}

.facility-marker {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(19, 35, 48, 0.24);
    color: white;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.draft-position-marker {
    width: 34px;
    height: 34px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.28);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.search-address-marker {
    width: 34px;
    height: 34px;
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 8px;
    display: block;
    background: #111827;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.28);
    transform: rotate(-45deg);
}

.search-address-marker::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #ffffff;
}

.station,
.facility-marker.station {
    background: #244c86;
}

.hospital,
.facility-marker.hospital {
    background: #16855a;
}

.clinic,
.facility-marker.clinic {
    background: #0f7f92;
}

.care_home,
.facility-marker.care_home {
    background: #8b5e2b;
}

.doctor_practice,
.facility-marker.doctor_practice {
    background: #6b4db8;
}

.pharmacy,
.facility-marker.pharmacy {
    background: #237a3b;
}

.dialysis,
.facility-marker.dialysis {
    background: #5569b0;
}

.timeline-head {
    align-items: center;
}

.timeline {
    display: grid;
    align-content: start;
    min-height: 0;
    overflow: auto;
    overflow-x: hidden;
}

.user-row {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    background: var(--surface);
    color: var(--text);
    text-align: left;
}

.facility-type-list {
    display: grid;
    gap: 8px;
    padding: 0 18px 18px;
}

.facility-type-row {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: var(--surface);
    color: var(--text);
    text-align: left;
}

.facility-type-row:hover,
.facility-type-row.is-selected {
    background: #eef7f8;
}

.facility-type-row strong,
.facility-type-row small {
    display: block;
}

.facility-type-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.user-row:hover,
.user-row.is-selected {
    background: #eef7f8;
}

.user-row strong,
.user-row small {
    display: block;
}

.user-row strong {
    font-size: 13px;
    line-height: 1.25;
}

.user-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.timeline-empty {
    padding: 26px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.timeline-item {
    display: grid;
    grid-template-columns: 8px 42px 1fr;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.timeline-item.is-future {
    background: #f5f1e6;
}

.timeline-item:hover,
.timeline-item.is-selected {
    background: #f6fafb;
}

.timeline-item.is-future:hover,
.timeline-item.is-future.is-selected {
    background: #ece4d1;
}

.timeline-color {
    min-height: 100%;
}

.timeline-item.is-future .timeline-color {
    opacity: 0.48;
}

.timeline-check {
    min-height: auto;
    display: grid;
    place-items: center;
    padding: 0;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.32);
}

.timeline-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.timeline-content {
    padding: 15px 16px;
    display: grid;
    gap: 8px;
}

.timeline-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.timeline-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.timeline-edit-button {
    min-height: 26px;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0 8px;
    background: #ffffff;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: none;
}

.timeline-edit-button:hover {
    border-color: var(--accent);
    background: #eef7f8;
}

.timeline-title {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 850;
    text-align: left;
    line-height: 1.25;
}

.timeline-location {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.status-pill {
    border-radius: 999px;
    padding: 4px 8px;
    background: var(--surface-soft);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 900;
}

.status-pill.active {
    background: #ffe3df;
    color: var(--danger);
}

.status-pill.done {
    background: #e7ecef;
    color: var(--other);
}

.status-pill.future {
    background: #fff4d7;
    color: #775313;
}

.leaflet-popup-content {
    min-width: 230px;
}

.popup-title {
    margin-bottom: 6px;
    font-weight: 850;
}

.popup-meta {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.popup-actions {
    margin-top: 10px;
}

.popup-actions button {
    width: 100%;
}

.backoffice-layout {
    height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
    overflow: hidden;
}

.backoffice-map-layout {
    grid-template-columns: minmax(460px, 0.55fr) minmax(560px, 1fr);
}

.backoffice-list,
.backoffice-detail {
    min-width: 0;
    background: var(--surface);
}

.backoffice-list {
    border-right: 1px solid var(--border);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
}

.backoffice-tabs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.backoffice-tab {
    min-height: 36px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 12px;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.backoffice-tab:hover {
    background: var(--surface-soft);
    color: var(--accent-dark);
}

.backoffice-tab.is-active {
    border-color: var(--border);
    background: var(--accent);
    color: #ffffff;
}

.backoffice-tab-panel {
    min-height: 0;
    overflow: auto;
}

#facilitiesTab {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
}

.backoffice-layout.is-settings-wide {
    grid-template-columns: minmax(640px, 1fr);
}

.backoffice-layout.is-settings-wide .backoffice-map-panel {
    display: none;
}

.backoffice-detail {
    overflow: auto;
}

.backoffice-map-panel {
    position: relative;
    min-width: 0;
    min-height: 0;
    background: var(--surface);
}

.backoffice-controls {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 190px;
    gap: 12px;
    align-items: end;
    padding: 18px;
    border-bottom: 1px solid var(--border);
}

.table-count {
    padding: 10px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.facility-table-wrap {
    overflow: auto;
    min-height: 0;
}

.facility-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.facility-table th,
.facility-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.facility-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.facility-table tbody tr {
    cursor: pointer;
}

.facility-table tbody tr:hover,
.facility-table tbody tr.is-selected {
    background: #f6fafb;
}

.table-title {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.table-title strong,
.table-title small {
    display: block;
}

.table-title strong {
    color: var(--text);
    font-size: 14px;
}

.table-title small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.empty-cell {
    color: var(--muted);
    padding: 24px 18px;
}

.backoffice-form {
    padding: 22px;
    gap: 16px;
}

.form-section-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-section-head h2 {
    font-size: 18px;
}

.form-section-head p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.coordinate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.address-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: -6px;
}

.facility-map {
    height: 300px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #dde7ec;
}

.facility-map-large {
    height: 100%;
    width: 100%;
    background: #dde7ec;
}

.facility-map-large.is-picking {
    cursor: crosshair;
}

.map-pick-bar {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 1200;
    transform: translateX(-50%);
    width: min(640px, calc(100% - 28px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(20, 33, 43, 0.42);
}

.modal-window {
    width: min(980px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: var(--surface);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(13, 27, 37, 0.28);
}

.facility-modal .backoffice-form {
    padding: 20px;
}

.facility-modal textarea {
    min-height: 78px;
}

.closure-modal {
    width: min(760px, calc(100vw - 40px));
}

.closure-modal form {
    padding: 20px;
}

.confirm-modal {
    width: min(460px, calc(100vw - 40px));
}

.login-modal {
    width: min(440px, calc(100vw - 40px));
}

.user-management {
    background: #f8fbfc;
}

.user-form {
    padding: 14px 18px;
}

.user-list {
    display: grid;
    gap: 8px;
    padding: 0 18px 18px;
}

.system-settings {
    background: #f8fbfc;
}

.settings-block {
    display: grid;
    gap: 14px;
}

.settings-block-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.settings-block-head h3 {
    margin: 0;
    font-size: 16px;
}

.settings-block-head p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.settings-placeholder {
    display: grid;
    gap: 6px;
    margin: 18px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.settings-placeholder strong {
    font-size: 14px;
}

.settings-placeholder p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.confirm-content {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.confirm-content h2 {
    font-size: 18px;
}

.confirm-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .workspace {
        grid-template-columns: minmax(360px, 1fr) 340px;
    }

    .facility-panel {
        right: 340px;
        width: 390px;
    }
}

@media (max-width: 1120px) {
    .backoffice-layout {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(280px, 42vh) 1fr;
    }

    .backoffice-list {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        max-height: none;
        order: 2;
    }

    .backoffice-map-panel {
        order: 1;
    }
}

@media (max-width: 980px) {
    .topbar {
        height: auto;
        align-items: stretch;
        flex-direction: column;
    }

    .toolbar {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .search {
        min-width: 240px;
        flex: 1;
    }

    .workspace {
        height: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .facility-panel {
        position: static;
        width: 100%;
        box-shadow: none;
        order: 1;
        transform: none;
    }

    .map-section {
        order: 2;
    }

    .timeline-panel {
        order: 3;
    }

    .facility-panel,
    .timeline-panel {
        border: 0;
        border-bottom: 1px solid var(--border);
        max-height: none;
    }

    .facility-panel.is-collapsed {
        display: none;
        transform: none;
    }

    #map {
        height: 58vh;
        min-height: 420px;
    }

    .timeline-panel {
        min-height: 360px;
        max-height: 420px;
    }
}

@media (max-width: 620px) {
    .toolbar,
    .form-grid,
    .form-actions,
    .facility-tools,
    .backoffice-controls,
    .coordinate-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .form-section-head {
        display: grid;
    }

    .brand {
        min-width: 0;
    }

    .topbar,
    .panel-head,
    form {
        padding-left: 14px;
        padding-right: 14px;
    }

    .legend {
        left: 10px;
        right: 10px;
        bottom: 12px;
    }
}
