:root {
    --bg: #f5f6f8;
    --surface: #ffffff;
    --text: #17191d;
    --muted: #69707a;
    --line: #e3e6ea;
    --primary: #176b45;
    --primary-dark: #0e5133;
    --primary-soft: #e9f5ee;
    --danger: #b42318;
    --danger-soft: #fff0ee;
    --warning: #9a5b00;
    --warning-soft: #fff7e6;
    --admin-bubble: #dff2e7;
    --customer-bubble: #ffffff;
    --shadow: 0 6px 24px rgba(22, 28, 36, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.app-shell {
    width: 100%;
    max-width: 640px;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 0 16px calc(32px + env(safe-area-inset-bottom));
}

.page-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 2px 14px;
}

.page-header h1 {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.eyebrow {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header-main {
    min-width: 0;
    flex: 1;
}

.header-main h1,
.header-main .eyebrow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-header {
    position: sticky;
    z-index: 20;
    top: 0;
    margin: 0 -16px;
    padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
    background: rgba(245, 246, 248, 0.96);
    border-bottom: 1px solid rgba(227, 230, 234, 0.9);
    backdrop-filter: blur(12px);
}

.back-link {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    font-size: 1.3rem;
    font-weight: 700;
}

.text-link,
.button-link {
    padding: 7px 2px;
    color: var(--primary-dark);
    border: 0;
    background: transparent;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 750;
    white-space: nowrap;
}

.flash {
    margin: 4px 0 14px;
    padding: 12px 14px;
    border: 1px solid #c7e8d5;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.91rem;
}

.flash.error {
    border-color: #ffd0ca;
    background: var(--danger-soft);
    color: var(--danger);
}

.flash.info {
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
}

.tab-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 2px 0 14px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #eceef1;
}

.tab-button {
    min-height: 44px;
    padding: 8px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-weight: 750;
}

.tab-button.active {
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(22, 28, 36, 0.07);
}

.tab-panel[hidden] {
    display: none;
}

.form-card,
.ticket-card,
.admin-contact-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.form-card.compact {
    padding: 17px;
}

.form-card h2 {
    margin: 0 0 5px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.field {
    display: block;
    margin: 0 0 15px;
}

.field > span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 7px;
    font-size: 0.9rem;
    font-weight: 750;
}

.field b {
    color: var(--primary);
    font-size: 0.7rem;
}

.field em {
    color: var(--muted);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 600;
}

.field small,
.file-field small,
.muted {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
}

input[type="text"],
input[type="tel"],
input[type="password"],
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid #d7dbe0;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--text);
    font-size: 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
    min-height: 124px;
    resize: vertical;
    line-height: 1.55;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #a1a7af;
}

input[type="file"] {
    width: 100%;
    color: var(--muted);
    font-size: 0.82rem;
}

input[type="file"]::file-selector-button {
    min-height: 42px;
    margin-right: 10px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7f8f9;
    color: var(--text);
    font-weight: 700;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 1px 0 16px;
    color: var(--muted);
    font-size: 0.84rem;
}

.check-row input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--primary);
}

.privacy-note {
    margin: 3px 0 14px;
    color: var(--muted);
    font-size: 0.78rem;
}

.primary-button,
.secondary-button {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    border: 0;
    border-radius: 13px;
    font-weight: 800;
}

.primary-button {
    background: var(--primary);
    color: #fff;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--primary-dark);
}

.secondary-button {
    border: 1px solid var(--line);
    background: #f3f5f6;
    color: var(--text);
}

button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.section-block {
    margin-bottom: 15px;
}

.section-heading {
    margin: 0 2px 10px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1rem;
}

.section-heading small {
    color: var(--muted);
    font-size: 0.76rem;
}

.recent-list {
    display: grid;
    gap: 9px;
}

.recent-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
}

.recent-card strong,
.recent-card small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-card strong {
    font-size: 0.94rem;
}

.recent-card small {
    color: var(--muted);
    font-size: 0.73rem;
}

.recent-actions {
    display: flex;
    gap: 5px;
}

.recent-open,
.recent-remove,
.small-button {
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7f8f9;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 750;
}

.recent-remove {
    color: var(--muted);
}

.empty-state {
    padding: 26px 14px;
    border: 1px dashed #cfd4da;
    border-radius: 15px;
    color: var(--muted);
    text-align: center;
    font-size: 0.88rem;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.login-shell {
    display: flex;
    flex-direction: column;
}

.access-card {
    margin-top: min(12vh, 80px);
}

.conversation-shell {
    padding-bottom: calc(168px + env(safe-area-inset-bottom));
}

.ticket-card {
    margin: 12px 0;
    background: #fffdf4;
    border-color: #efe1aa;
}

.ticket-card > strong,
.ticket-card > span,
.ticket-card > small {
    display: block;
}

.ticket-card > strong {
    margin-bottom: 11px;
}

.ticket-card > span {
    color: var(--muted);
    font-size: 0.73rem;
}

.ticket-card > small {
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.76rem;
}

.copy-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-row code {
    min-width: 0;
    flex: 1;
    padding: 9px 10px;
    border-radius: 10px;
    background: #f5f0d9;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.conversation-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 11px 2px 6px;
    color: var(--muted);
    font-size: 0.75rem;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    border-radius: 50%;
    vertical-align: 1px;
}

.status-dot.open {
    background: #1f9d62;
}

.status-dot.closed {
    background: #9ca3ad;
}

.plain-copy {
    max-width: 64%;
    padding: 5px 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.73rem;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 10px 0 18px;
}

.message-row {
    display: flex;
    width: 100%;
}

.message-row.customer {
    justify-content: flex-start;
}

.message-row.admin {
    justify-content: flex-end;
}

.message-wrap {
    width: fit-content;
    max-width: min(84%, 490px);
}

.sender-label {
    display: block;
    margin: 0 6px 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.message-row.admin .sender-label,
.message-row.admin time {
    text-align: right;
}

.message-bubble {
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 5px 16px 16px 16px;
    background: var(--customer-bubble);
    box-shadow: 0 3px 12px rgba(22, 28, 36, 0.035);
    overflow-wrap: anywhere;
}

.message-row.admin .message-bubble {
    border-color: #c6e5d3;
    border-radius: 16px 5px 16px 16px;
    background: var(--admin-bubble);
}

.message-bubble p {
    margin: 0;
    white-space: normal;
}

.message-wrap time {
    display: block;
    margin: 4px 6px 0;
    color: #8d949d;
    font-size: 0.67rem;
}

.attachment-grid {
    display: grid;
    gap: 7px;
    margin-top: 9px;
}

.image-attachment {
    display: block;
    overflow: hidden;
    border-radius: 11px;
    background: #e9ecef;
}

.image-attachment img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 210px;
    padding: 9px;
    border: 1px solid rgba(70, 78, 88, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    text-decoration: none;
}

.file-attachment > span {
    width: 39px;
    height: 39px;
    display: grid;
    flex: 0 0 39px;
    place-items: center;
    border-radius: 9px;
    background: #fbe9e7;
    color: #a62a1e;
    font-size: 0.7rem;
    font-weight: 850;
}

.file-attachment div {
    min-width: 0;
}

.file-attachment strong,
.file-attachment small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-attachment strong {
    font-size: 0.79rem;
}

.file-attachment small {
    color: var(--muted);
    font-size: 0.68rem;
}

.composer {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.composer textarea {
    min-height: 58px;
    max-height: 150px;
    padding: 10px 12px;
    resize: none;
}

.composer-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
}

.composer-actions small {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.7rem;
}

.attach-button {
    flex: 0 0 auto;
}

.attach-button input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.attach-button span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f5f6f7;
    font-size: 0.8rem;
    font-weight: 750;
}

.compact-button {
    width: auto;
    min-width: 76px;
    min-height: 40px;
    padding: 7px 15px;
    border-radius: 10px;
}

.closed-notice {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #f0f1f3;
    color: var(--muted);
    text-align: center;
    font-size: 0.85rem;
}

.admin-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 12px 0 4px;
    padding: 14px;
}

.admin-contact-card div:last-child {
    grid-column: 1 / -1;
}

.admin-contact-card span,
.admin-contact-card strong {
    display: block;
}

.admin-contact-card span {
    color: var(--muted);
    font-size: 0.7rem;
}

.admin-contact-card strong {
    margin-top: 2px;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}


.read-receipt {
    margin: 6px 3px 0;
    color: var(--muted);
    font-size: 0.73rem;
    text-align: right;
}

.status-form {
    margin-top: 10px;
    text-align: center;
}

.text-button {
    min-height: 42px;
    padding: 8px 14px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 3px 0 14px;
}

.admin-summary a {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
}

.admin-summary strong {
    font-size: 1.36rem;
    line-height: 1.2;
}

.admin-summary span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.74rem;
}

.filter-scroll {
    display: flex;
    gap: 7px;
    margin: 0 -16px 13px;
    padding: 0 16px 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    min-height: 38px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
}

.filter-chip span {
    font-size: 0.68rem;
}

.filter-chip.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.thread-list {
    display: grid;
    gap: 9px;
}

.thread-card {
    display: block;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-left: 4px solid #c8cdd3;
    border-radius: 15px;
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(22, 28, 36, 0.035);
}

.thread-card.unread {
    border-left-color: #d33b2f;
    background: #fffdfc;
}

.thread-card.waiting {
    border-left-color: #e2a437;
}

.thread-card.answered {
    border-left-color: #35a46d;
}

.thread-card.closed {
    opacity: 0.72;
}

.thread-card-top,
.thread-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.thread-card-top strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.94rem;
}

.thread-card-top time {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.7rem;
}

.thread-card p {
    margin: 5px 0 9px;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8rem;
}

.thread-card-bottom {
    color: var(--muted);
    font-size: 0.7rem;
}

.thread-card-bottom b {
    flex: 0 0 auto;
    color: var(--text);
    font-size: 0.69rem;
}

@media (min-width: 700px) {
    .app-shell {
        padding-right: 20px;
        padding-left: 20px;
    }

    .sticky-header {
        margin-right: -20px;
        margin-left: -20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .composer {
        padding-right: 20px;
        padding-left: 20px;
        border-right: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 380px) {
    .app-shell {
        padding-right: 12px;
        padding-left: 12px;
    }

    .form-card {
        padding: 15px;
    }

    .message-wrap {
        max-width: 88%;
    }

    .admin-contact-card {
        grid-template-columns: 1fr;
    }

    .admin-contact-card div:last-child {
        grid-column: auto;
    }
}

/* 공지: 고객 화면 상단 한 줄 + 펼침 목록 */
.notice-box {
    margin: -2px 0 14px;
    border: 1px solid #f0c48a;
    border-radius: 14px;
    background: #fff1dc;
    color: #7a3500;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(151, 78, 0, 0.08);
}

.notice-box > summary {
    min-height: 48px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    cursor: pointer;
    list-style: none;
}

.notice-box > summary::-webkit-details-marker,
.notice-item > summary::-webkit-details-marker,
.admin-notice-manager > summary::-webkit-details-marker {
    display: none;
}

.notice-box > summary strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #a13d00;
    font-size: 0.92rem;
}

.notice-mark {
    padding: 2px 7px;
    border-radius: 999px;
    background: #dd5a00;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 850;
}

.notice-toggle {
    color: #b34b00;
    font-weight: 900;
    transition: transform .18s ease;
}

.notice-box[open] .notice-toggle { transform: rotate(180deg); }

.notice-list {
    padding: 0 10px 10px;
    border-top: 1px solid rgba(180, 91, 0, .16);
}

.notice-item {
    border-bottom: 1px solid rgba(180, 91, 0, .14);
}
.notice-item:last-child { border-bottom: 0; }

.notice-item > summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 11px 3px;
    cursor: pointer;
    list-style: none;
}

.notice-item > summary strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #823300;
    font-size: .88rem;
}

.notice-item time {
    color: #a66b43;
    font-size: .68rem;
    white-space: nowrap;
}

.notice-body {
    margin: 0 2px 10px;
    padding: 11px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.62);
    color: #5f351c;
    font-size: .86rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* 관리자 공지 작성·관리 */
.admin-notice-manager {
    margin: 0 0 14px;
    border: 1px solid #f0c48a;
    border-radius: 16px;
    background: #fff8ed;
    overflow: hidden;
}

.admin-notice-manager > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    padding: 12px 15px;
    color: #8a3b00;
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.admin-notice-manager > summary span {
    color: #b55a17;
    font-size: .78rem;
}

.notice-write-form { padding: 2px 14px 15px; }
.notice-write-form textarea { min-height: 96px; }

.admin-notice-list {
    padding: 0 14px 14px;
    display: grid;
    gap: 7px;
}

.admin-notice-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 11px;
    border: 1px solid #f0d7b8;
    border-radius: 11px;
    background: #fff;
}

.admin-notice-list strong,
.admin-notice-list small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.admin-notice-list strong { font-size: .86rem; }
.admin-notice-list small { color: var(--muted); font-size: .68rem; }

.notice-delete-button {
    min-height: 34px;
    padding: 5px 9px;
    border: 1px solid #ffd0ca;
    border-radius: 9px;
    background: #fff4f2;
    color: var(--danger);
    font-size: .75rem;
    font-weight: 800;
}

@media (max-width: 420px) {
    .notice-item time { display: none; }
}

/* v1.02 모바일 공지 박스 표시 보강 */
.notice-box {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.notice-box > summary {
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 640px) {
    .notice-box {
        margin: 0 0 12px;
        border: 1px solid #f0b96f;
        border-radius: 13px;
        background-color: #fff1dc;
        box-shadow: 0 3px 10px rgba(151, 78, 0, 0.08);
        overflow: hidden;
    }

    .notice-box > summary {
        min-height: 48px;
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        background-color: #fff1dc;
        color: #7a3500;
    }

    .notice-box > summary strong {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #a13d00;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .notice-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background-color: #dd5a00;
        color: #fff;
    }

    .notice-toggle {
        display: inline-block;
        flex: 0 0 auto;
    }
}
