:root {
    --bg-1: #f4f7fb;
    --bg-2: #e8f0fa;
    --panel: #ffffff;
    --text: #132238;
    --muted: #4f6076;
    --line: #d4deeb;
    --primary: #0e4d92;
    --primary-hover: #0b3d73;
    --danger: #b42318;
    --radius: 14px;
    --radius-panel: 18px;
    --radius-row: 16px;
    --radius-chip: 10px;
    --radius-control: 10px;
    --radius-media: 8px;
    --surface-soft: #f7faff;
    --surface-row: rgba(255, 255, 255, 0.78);
    --line-soft: #d8e4f5;
    --selection-bg: #eef6ff;
    --selection-bg-strong: #e5f0ff;
    --selection-border: #7fa9dc;
    --selection-border-strong: #5d8fc9;
    --selection-ring: rgba(47, 111, 184, 0.16);
    --selection-text: #0f3d79;
}

.hidden {
    display: none !important;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.layout {
    min-height: 100%;
    padding: 16px;
    position: relative;
}

.app-shell {
    height: calc(100vh - 32px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 36px rgba(13, 32, 63, 0.09);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.topbar {
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.topbar-texts {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.topbar-title {
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-message {
    margin: 0;
    font-size: 12px;
    color: #3a5274;
    line-height: 1.35;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.topbar-message-link {
    font-weight: 600;
}

.topbar-message-divider {
    color: #6f87a8;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.workspace {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    grid-template-areas: "panel map";
}

body[data-map-mode="view"] .workspace {
    overflow: visible;
    border-radius: 0;
}

.side-panel {
    grid-area: panel;
    border-right: 1px solid var(--line);
    padding: 16px;
    overflow: auto;
}

@media (min-width: 981px) {
    body[data-map-mode="view"] .workspace {
        grid-template-columns: 384px minmax(0, 1fr);
    }

    body[data-map-mode="view"] .side-panel {
        background:
            linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(255, 255, 255, 0.9));
    }

    body[data-map-mode="view"] .mobile-sheet-content {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    body[data-map-mode="view"] .mobile-sheet-section {
        min-height: auto;
    }

    body[data-map-mode="view"] #mobile-stats-panel {
        order: 1;
        display: grid;
        gap: 12px;
    }

    body[data-map-mode="view"] #issue-list-panel {
        order: 2;
    }

    body[data-map-mode="view"] .side-panel-has-filter #issue-list-panel {
        order: 0;
        margin-top: 0;
        border-color: var(--selection-border);
        background: #ffffff;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.72),
            0 8px 18px rgba(31, 63, 102, 0.08);
    }

    body[data-map-mode="view"] .side-panel-has-filter #mobile-stats-panel {
        order: 1;
    }

    body[data-map-mode="view"] .side-panel-has-filter .issue-list-head {
        padding-bottom: 8px;
        border-bottom: 1px solid var(--line-soft);
    }

    body[data-map-mode="view"] .side-panel-has-filter .issue-list-head .list-title {
        color: var(--selection-text);
    }

    body[data-map-mode="view"] .side-panel-has-filter .issue-list-clear-btn {
        display: inline-flex;
    }

    body[data-map-mode="view"] .side-panel-has-filter .issue-stats-summary,
    body[data-map-mode="view"] .side-panel-has-filter .pledge-panel {
        margin-top: 0;
    }
}

.map-wrap {
    grid-area: map;
    position: relative;
    min-width: 0;
    transition: opacity 0.18s ease;
}

body[data-map-mode="view"] .map-wrap {
    overflow: visible;
    border-radius: 0;
}

body[data-map-mode="view"] .map,
body[data-map-mode="view"] .map .ol-viewport {
    overflow: visible;
    border-radius: 0;
}

.map-wrap.map-wrap-initializing {
    opacity: 0;
    pointer-events: none;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f5f8fc;
    color: #223450;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.icon-btn:hover {
    background: #eaf0f8;
}

.icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.list-title {
    margin-top: 18px;
}

.pledge-panel {
    margin-top: 12px;
    margin-bottom: 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-panel);
    padding: 10px;
    background: var(--surface-soft);
}

.pledge-panel h3 {
    font-size: 15px;
    color: #1f3f66;
}

.pledge-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.pledge-item {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-row);
    padding: 10px;
    background: var(--surface-row);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.pledge-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.pledge-item p {
    font-size: 12px;
    color: var(--muted);
}

.pledge-common-tags {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pledge-common-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 26px;
    border-radius: var(--radius-chip);
    border: 1px solid #d8e5f8;
    background: #eef5ff;
    color: #1d4c8f;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    padding: 4px 8px;
    cursor: pointer;
    appearance: none;
}

.pledge-common-tag:hover {
    background: #e5f0ff;
    border-color: #bfd5f6;
}

.pledge-common-tag-active {
    background: var(--selection-bg);
    border-color: var(--selection-border);
    color: var(--selection-text);
    box-shadow:
        inset 0 0 0 1px #bfd4ee,
        0 0 0 2px var(--selection-ring);
}

.pledge-common-tag-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--radius-media);
    background: #1d4c8f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.pledge-common-tag-active .pledge-common-tag-count {
    background: var(--primary);
}

@supports (corner-shape: squircle) {
    .app-shell,
    .icon-btn,
    .pledge-panel,
    .pledge-item,
    .spot-item,
    .spot-category,
    .pledge-common-tag,
    .pledge-common-tag-count,
    .map-popup,
    .ol-control button {
        corner-shape: squircle;
    }
}

.spot-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.spot-item {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-row);
    padding: 10px;
    cursor: pointer;
    background: var(--surface-row);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.spot-item--no-memo {
    padding: 8px 10px;
}

.spot-item--no-memo .spot-category,
.spot-item--no-memo .spot-dong {
    margin-top: 4px;
}

.spot-item--no-memo .spot-item-actions {
    margin-top: 6px;
}

.spot-dong {
    margin-top: 6px;
    font-size: 12px;
    color: #2a4a72;
}

.spot-category {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: var(--radius-chip);
    font-size: 12px;
    font-weight: 600;
    color: #12335c;
    background: #e8f0ff;
    border: 1px solid transparent;
}

.spot-item:hover {
    background: #f4f8fd;
}

.spot-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.spot-memo {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}

.spot-item-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.spot-action-btn {
    border: 1px solid var(--line);
    background: #eef3fa;
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 10px 12px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: #eff3f8;
    color: #223450;
    padding: 9px 11px;
}

.btn-small {
    font-size: 12px;
    padding: 6px 9px;
}

.spot-action-btn-checked {
    background: #dce8f9;
    border-color: #afc6e8;
    color: #0b3d73;
    font-weight: 600;
}

.spot-action-btn.danger {
    background: #fdecec;
    color: var(--danger);
    border-color: #f6d1cd;
}

.spot-filter-row {
    margin-top: 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spot-filter-row .spot-action-btn {
    margin-right: 2px;
}

.issue-contact-link {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.16s ease, border-color 0.16s ease;
}

.issue-contact-link:hover {
    color: #1c385d;
    border-bottom-color: #b7c9e2;
}

.issue-contact-link:focus-visible {
    outline: none;
    color: #1c385d;
    border-bottom-color: #8da9cb;
}

.empty {
    border: 1px dashed var(--line);
    border-radius: 10px;
    padding: 10px;
    color: var(--muted);
    font-size: 13px;
}

.map {
    width: 100%;
    height: 100%;
}

.map .ol-control {
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 14px rgba(12, 31, 60, 0.12);
    overflow: hidden;
}

.map .ol-control button {
    width: 30px;
    height: 30px;
    margin: 0;
    border: 1px solid rgba(203, 216, 232, 0.86);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.94);
    color: #1f3f66;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    transition:
        background 0.16s ease,
        color 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.map .ol-control button:hover,
.map .ol-control button:focus {
    border-color: #a9c1e3;
    background: #edf4ff;
    color: #173a63;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88);
}

.map .ol-zoom {
    top: 10px;
    left: 10px;
    display: grid;
    gap: 4px;
    background: transparent;
    box-shadow: none;
}

.map .ol-attribution {
    right: 10px;
    bottom: 10px;
    background: transparent;
    box-shadow: none;
}

.map .ol-attribution button {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.map-popup {
    position: absolute;
    transform: translate(-50%, calc(-100% - 10px));
    min-width: 200px;
    max-width: 260px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: #1b2d47;
    box-shadow: 0 10px 30px rgba(5, 23, 48, 0.18);
    pointer-events: none;
}

.mobile-map-action {
    display: none;
}

.mobile-form-backdrop {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    body[data-map-mode="view"] {
        --mobile-app-radius: 20px;
        --mobile-app-border: 0px;
        --mobile-content-radius: calc(var(--mobile-app-radius) - var(--mobile-app-border));
        --mobile-map-underlay: #758a78;
        --mobile-sheet-inset: 10px;
        --mobile-sheet-radius: calc(var(--mobile-content-radius) - var(--mobile-sheet-inset));
    }

    body[data-map-mode] {
        overflow: auto;
    }

    body[data-map-mode="view"] {
        overflow: hidden;
    }

    .layout {
        height: auto;
        min-height: 100%;
        padding: 8px;
    }

    .app-shell {
        height: auto;
        min-height: 100dvh;
        border-radius: 12px;
        overflow: visible;
    }

    body[data-map-mode="view"] .layout {
        height: 100%;
        min-height: 0;
    }

    body[data-map-mode="view"] .app-shell {
        height: calc(100vh - 16px);
        min-height: 0;
        border-width: 0;
        background: var(--mobile-map-underlay);
        overflow: hidden;
        border-radius: var(--mobile-app-radius);
    }

    body[data-map-mode="view"] .topbar {
        background: var(--panel);
    }

    @supports (height: 100dvh) {
        .app-shell {
            min-height: 100dvh;
        }

        body[data-map-mode="view"] .app-shell {
            height: calc(100dvh - 16px);
            min-height: 0;
        }
    }

    .workspace {
        flex: 1 1 auto;
        min-height: 0;
        overflow: visible;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
      "map"
      "panel";
    }

    body[data-map-mode="view"] .workspace {
        position: relative;
        overflow: visible;
        border-radius: 0;
        grid-template-rows: minmax(0, 1fr);
        grid-template-areas: "map";
    }

    .map-wrap {
        position: sticky;
        top: 0;
        z-index: 6;
        min-height: 280px;
        height: clamp(280px, 44vh, 420px);
        background: #ffffff;
        border-bottom: 1px solid var(--line);
    }

    body[data-map-mode="view"] .map-wrap {
        position: relative;
        top: auto;
        z-index: 0;
        min-height: 0;
        height: 100%;
        border-bottom: none;
        background: var(--mobile-map-underlay);
        overflow: hidden;
        border-radius: 0 0 var(--mobile-app-radius) var(--mobile-app-radius);
    }

    body[data-map-mode="view"] .map,
    body[data-map-mode="view"] .map .ol-viewport {
        overflow: hidden;
        border-radius: inherit;
    }

    .side-panel {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 12px;
        overflow: visible;
    }

    body[data-map-mode="view"] .side-panel {
        position: absolute;
        left: var(--mobile-sheet-inset);
        right: var(--mobile-sheet-inset);
        bottom: var(--mobile-sheet-inset);
        z-index: 8;
        height: min(54dvh, 520px);
        min-height: min(344px, calc(100% - 86px));
        max-height: calc(100% - 86px);
        display: flex;
        flex-direction: column;
        gap: 8px;
        overflow: hidden;
        border: 1px solid rgba(205, 220, 240, 0.92);
        border-radius: var(--mobile-sheet-radius);
        padding: 8px 10px calc(var(--mobile-sheet-inset) + env(safe-area-inset-bottom));
        background: rgba(247, 250, 255, 0.96);
        box-shadow:
            0 -16px 34px rgba(13, 32, 63, 0.18),
            0 2px 8px rgba(13, 32, 63, 0.08);
        backdrop-filter: blur(10px);
        scroll-padding-bottom: calc(16px + env(safe-area-inset-bottom));
        transition:
            height 0.24s ease,
            min-height 0.24s ease,
            box-shadow 0.24s ease,
            background-color 0.24s ease;
        touch-action: pan-y;
    }

    body[data-map-mode="view"] .side-panel.mobile-sheet-collapsed {
        height: calc(42px + env(safe-area-inset-bottom));
        min-height: 0;
        max-height: calc(42px + env(safe-area-inset-bottom));
        background: rgba(247, 250, 255, 0.98);
        box-shadow:
            0 -10px 22px rgba(13, 32, 63, 0.16),
            0 2px 8px rgba(13, 32, 63, 0.08);
    }

    body[data-map-mode="view"] .side-panel.mobile-sheet-dragging {
        transition:
            box-shadow 0.16s ease,
            background-color 0.16s ease;
    }

    body[data-map-mode="view"] .mobile-sheet-grip {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 100%;
        height: 20px;
        margin: -2px 0 0;
        border: 0;
        border-radius: 12px;
        background: transparent;
        cursor: pointer;
        touch-action: none;
    }

    body[data-map-mode="view"] .mobile-sheet-grip::before {
        content: "";
        display: block;
        width: 42px;
        height: 4px;
        border-radius: 999px;
        background: #bfd0e6;
        transition:
            width 0.18s ease,
            background-color 0.18s ease,
            transform 0.18s ease;
    }

    body[data-map-mode="view"] .mobile-sheet-grip:focus-visible {
        outline: 2px solid #2f6fb8;
        outline-offset: 2px;
    }

    body[data-map-mode="view"] .side-panel.mobile-sheet-collapsed .mobile-sheet-grip::before {
        width: 54px;
        background: #94accb;
        transform: translateY(1px);
    }

    body[data-map-mode="view"] .mobile-sheet-content {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0.18s ease;
    }

    body[data-map-mode="view"] .side-panel.mobile-sheet-collapsed .mobile-sheet-content {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
    }

    body[data-map-mode="view"] .mobile-sheet-tabs {
        display: grid;
        flex: 0 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        padding: 2px;
        border: 1px solid #d7e3f4;
        border-radius: 14px;
        background: #edf4ff;
    }

    body[data-map-mode="view"] .mobile-sheet-tab {
        min-width: 0;
        min-height: 34px;
        border: 0;
        border-radius: 11px;
        background: transparent;
        color: #466286;
        font: inherit;
        font-size: 12px;
        font-weight: 800;
        cursor: pointer;
        transition:
            background 0.16s ease,
            color 0.16s ease,
            box-shadow 0.16s ease,
            opacity 0.16s ease;
    }

    body[data-map-mode="view"] .mobile-sheet-tab-active {
        background: #ffffff;
        color: #173f70;
        box-shadow: 0 2px 8px rgba(31, 63, 102, 0.11);
    }

    body[data-map-mode="view"] .mobile-sheet-tab-disabled {
        cursor: default;
        opacity: 0.45;
    }

    body[data-map-mode="view"] .mobile-sheet-section {
        display: none;
        flex: 1 1 auto;
        min-height: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    body[data-map-mode="view"] .mobile-sheet-section-active {
        display: block;
    }

    body[data-map-mode="view"] .issue-list-panel.mobile-sheet-section-active {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    body[data-map-mode="view"] .issue-list-panel.issue-list-panel-hidden {
        display: none;
    }

    body[data-map-mode="view"] .issue-stats-summary,
    body[data-map-mode="view"] .pledge-panel,
    body[data-map-mode="view"] .issue-list-panel {
        margin: 0;
        border-radius: 16px;
    }

    body[data-map-mode="view"] .issue-stats-summary {
        padding: 8px;
    }

    body[data-map-mode="view"] .issue-stats-grid,
    body[data-map-mode="view"] .pledge-list,
    body[data-map-mode="view"] .spot-list {
        gap: 7px;
    }

    body[data-map-mode="view"] .issue-list-head {
        position: relative;
        flex: 0 0 auto;
        z-index: 5;
        margin: 0;
        padding: 0 0 8px;
        background: var(--surface-soft);
        box-shadow: 0 3px 4px rgba(247, 250, 255, 0.9);
    }

    body[data-map-mode="view"] .issue-list-panel .spot-list {
        flex: 1 1 auto;
        min-height: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 1;
        margin: 0;
    }

    body[data-map-mode="view"] .issue-list-clear-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 6px 10px;
    }

    body[data-map-mode="view"] .issue-stats-filter-btn {
        min-height: 42px;
    }

    body[data-map-mode="view"] .map .ol-attribution {
        bottom: calc(min(54dvh, 520px) + 24px);
    }

    body[data-map-mode="view"].mobile-sheet-is-collapsed .map .ol-attribution {
        bottom: calc(56px + env(safe-area-inset-bottom));
    }

    .list-title {
        margin-top: 0;
    }

    .topbar {
        padding: 7px 10px;
        gap: 8px;
    }

    .topbar-texts {
        flex: 1 1 auto;
        gap: 0;
    }

    .topbar-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        min-width: 0;
    }

    .topbar-title {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.12;
        white-space: nowrap;
    }

    .topbar-total-issue-count {
        min-height: 20px;
        font-size: 11px;
        line-height: 1.1;
        padding: 2px 8px;
    }

    .topbar-actions {
        gap: 6px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .icon-btn svg {
        width: 17px;
        height: 17px;
    }

    .topbar-message {
        font-size: 11px;
    }

    .spot-form-sheet {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        border-radius: 16px 16px 0 0;
        border: 1px solid var(--line);
        border-bottom: none;
        background: #ffffff;
        box-shadow: 0 -12px 28px rgba(14, 24, 38, 0.2);
        transform: translateY(110%);
        transition: transform 0.22s ease;
        max-height: 78vh;
        overflow: auto;
        padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
    }

    .spot-form-sheet.open {
        transform: translateY(0);
    }

    .spot-form-close-btn {
        display: inline-flex;
    }

    .mobile-map-action {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 999px;
        padding: 8px 12px;
        background: rgba(14, 77, 146, 0.92);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 6px 14px rgba(12, 31, 60, 0.25);
    }

    .mobile-map-action:disabled {
        opacity: 0.55;
    }

    .mobile-form-backdrop {
        position: fixed;
        inset: 0;
        z-index: 55;
        display: block;
        background: rgba(7, 17, 29, 0.4);
    }

    .mobile-form-backdrop.hidden {
        display: none !important;
    }
}

@media (max-width: 540px) {
    .topbar {
        padding: 7px 9px;
    }

    .topbar-title {
        font-size: 15px;
    }

    .topbar-total-issue-count {
        min-height: 19px;
        font-size: 10.5px;
        padding: 2px 7px;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
}
