:root {
    --ink: #1f2933;
    --muted: #667085;
    --line: #dde5ea;
    --paper: #ffffff;
    --soft: #f5f8f7;
    --teal: #0f766e;
    --teal-strong: #0b5f59;
    --rose: #be123c;
    --amber: #b45309;
    --indigo: #4338ca;
    --shadow: 0 24px 70px rgba(31, 41, 51, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 32%),
        linear-gradient(315deg, rgba(190, 18, 60, 0.07), transparent 28%),
        #f7faf9;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.site-header,
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
}

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

.brand-logo {
    display: block;
    width: 118px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--rose));
    font-size: 14px;
    font-weight: 800;
}

.brand strong,
.brand span {
    display: block;
}

.brand span {
    color: var(--muted);
    font-size: 13px;
}

.admin-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-nav a.active {
    color: #fff;
    border-color: var(--teal);
    background: var(--teal);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: start;
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto 60px;
}

.hero-copy {
    position: sticky;
    top: 24px;
    padding: 34px 0;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    line-height: 1.05;
}

.hero-copy h1 {
    max-width: 560px;
    font-size: clamp(42px, 7vw, 86px);
}

.lead {
    max-width: 420px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.contact-strip span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--muted);
    font-size: 14px;
}

.panel {
    border: 1px solid rgba(221, 229, 234, 0.95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.booking-panel {
    padding: 24px;
}

.booking-step[hidden] {
    display: none;
}

.booking-step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.booking-step-indicator span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.booking-step-indicator span.active {
    color: #fff;
    border-color: var(--teal);
    background: var(--teal);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-heading.compact {
    display: block;
}

.section-heading h2,
.manual-form h2 {
    font-size: 22px;
}

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

.service-card {
    position: relative;
    display: grid;
    min-height: 156px;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    text-align: left;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover,
.service-card.selected {
    border-color: var(--service-color);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(31, 41, 51, 0.1);
}

.service-card strong {
    padding-right: 20px;
    font-size: 18px;
}

.service-card span:not(.service-dot) {
    color: var(--muted);
    line-height: 1.4;
}

.service-card em {
    align-self: end;
    color: var(--ink);
    font-style: normal;
    font-weight: 800;
}

.service-dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--service-color);
}

.selected-service-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 18px;
    padding: 16px;
    background: #fff;
}

.selected-service-summary h2 {
    margin-bottom: 4px;
    font-size: 24px;
}

.selected-service-summary span {
    color: var(--muted);
    font-weight: 800;
}

.booking-workspace {
    display: grid;
    grid-template-columns: minmax(270px, 0.9fr) minmax(280px, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.calendar-wrap,
.slot-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--soft);
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 12px;
}

.icon-button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    font-size: 24px;
    line-height: 1;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.week-labels {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.calendar-day,
.admin-day {
    display: grid;
    place-items: center;
    min-width: 0;
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
}

.calendar-day.today,
.admin-day.today {
    border-color: var(--amber);
}

.calendar-day.selected,
.admin-day.selected {
    color: #fff;
    background: var(--teal);
}

.calendar-day.outside,
.admin-day.muted-day {
    color: #a1a9b1;
    background: rgba(255, 255, 255, 0.55);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 9px;
    min-height: 52px;
    margin: 16px 0;
}

.slot-grid .muted {
    grid-column: 1 / -1;
}

.slot-button {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    font-weight: 800;
}

.slot-button:hover,
.slot-button.selected {
    color: #fff;
    border-color: var(--teal);
    background: var(--teal);
}

.booking-form {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.bot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

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

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 12px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 10px 16px;
    font-weight: 800;
}

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

.button.secondary {
    color: var(--teal);
    border-color: rgba(15, 118, 110, 0.28);
    background: rgba(15, 118, 110, 0.08);
}

.button.ghost {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

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

.form-message {
    min-height: 22px;
    color: var(--muted);
    font-weight: 700;
}

.form-message.success {
    color: var(--teal);
}

.form-message.error {
    color: var(--rose);
}

.setup-page,
.login-page {
    display: grid;
    place-items: center;
}

.setup-shell,
.auth-shell {
    width: min(460px, calc(100% - 32px));
}

.setup-panel,
.auth-panel {
    padding: 28px;
}

.stacked-form {
    display: grid;
    gap: 14px;
}

.notice {
    border-radius: var(--radius);
    margin: 0 0 16px;
    padding: 12px 14px;
    font-weight: 700;
}

.notice.success {
    color: #0f5132;
    background: #dcfce7;
}

.notice.error {
    color: #9f1239;
    background: #ffe4e6;
}

.summary-list {
    display: grid;
    gap: 8px;
    margin: 20px 0;
}

.summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

.summary-list dt {
    color: var(--muted);
    font-weight: 700;
}

.summary-list dd {
    margin: 0;
    font-weight: 800;
}

.admin-page {
    background: #f6f8fa;
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 10px auto 60px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.admin-grid > .panel,
.admin-shell > .panel {
    padding: 18px;
}

.admin-calendar .admin-day {
    position: relative;
    min-height: 46px;
    aspect-ratio: auto;
    place-items: start;
    padding: 8px;
    background: #fff;
}

.admin-calendar .admin-day.selected {
    color: #fff;
    border-color: var(--teal-strong);
    background: var(--teal-strong);
}

.admin-calendar .admin-day.selected em {
    color: var(--teal-strong);
    background: #fff;
}

.admin-day em {
    position: absolute;
    right: 6px;
    bottom: 6px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #fff;
    background: var(--rose);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}

.booking-list {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
}

.booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-left: 4px solid var(--service-color);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--soft);
}

.booking-item span,
.booking-item small {
    display: block;
}

.booking-item small {
    color: var(--muted);
}

.text-button {
    border: 0;
    padding: 4px;
    background: transparent;
    font-weight: 800;
}

.text-button.danger {
    color: var(--rose);
}

.manual-form {
    border-top: 0;
    padding-top: 0;
}

.admin-date-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 12px;
    color: var(--ink);
    background: var(--soft);
    font-weight: 800;
}

.admin-slot-picker {
    display: grid;
    gap: 8px;
}

.admin-slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    margin: 0;
    max-height: 230px;
    overflow: auto;
}

.service-admin-list {
    display: grid;
    gap: 10px;
}

.service-edit {
    display: grid;
    grid-template-columns: minmax(160px, 1.2fr) minmax(160px, 1.4fr) 86px 110px 70px 86px 88px 94px;
    gap: 10px;
    align-items: end;
    border: 1px solid var(--line);
    border-left: 5px solid var(--service-color, var(--teal));
    border-radius: var(--radius);
    padding: 12px;
    background: var(--soft);
}

.new-service {
    margin-top: 16px;
    background: #fff;
}

.switch-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
}

.switch-row input {
    width: 18px;
    height: 18px;
}

.hours-form {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) 120px 160px 160px;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--soft);
}

.narrow-form {
    max-width: 460px;
}

@media (max-width: 980px) {
    .booking-layout,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        position: static;
        padding: 10px 0;
    }

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

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

@media (max-width: 680px) {
    .site-header,
    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-panel,
    .admin-grid > .panel,
    .admin-shell > .panel,
    .setup-panel,
    .auth-panel {
        padding: 16px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .service-grid,
    .form-grid,
    .form-grid.two,
    .service-edit,
    .hours-row {
        grid-template-columns: 1fr;
    }

    .selected-service-summary {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-calendar .admin-day {
        min-height: 52px;
        padding: 6px;
    }

    .admin-day em {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

.exception-slot-list {
    display: grid;
    gap: 10px;
}

.exception-slot-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) auto;
    gap: 10px;
    align-items: end;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--soft);
}

.slot-heading-row,
.split-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.small-note {
    margin-top: 8px;
    font-size: 13px;
}

.exception-edit-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #fff;
}

.exception-edit-card + .exception-edit-card {
    margin-top: 12px;
}

.delete-exception-form {
    margin-top: 8px;
}

@media (max-width: 680px) {
    .exception-slot-row,
    .slot-heading-row,
    .split-actions {
        grid-template-columns: 1fr;
        align-items: stretch;
        flex-direction: column;
    }
}

.month-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0;
}

.month-picker-form {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.exception-month-list {
    display: grid;
    gap: 10px;
}

.exception-day-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.exception-day-card.is-week-start {
    margin-top: 16px;
}

.exception-day-card.is-week-start::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    height: 2px;
    background: #cbd5e1;
}

.exception-day-card.is-weekend {
    background: #f8fafc;
    opacity: 0.78;
}

.exception-day-card.is-closed-day {
    border-color: #fecaca;
    background: #fff1f2;
}

.exception-day-card.is-custom-day {
    border-color: #fde68a;
    background: #fffbeb;
}

.exception-day-card.is-weekend.is-closed-day,
.exception-day-card.is-weekend.is-custom-day {
    opacity: 0.9;
}

.exception-day-card summary {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.4fr) minmax(120px, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
}

.exception-day-card summary::-webkit-details-marker {
    display: none;
}

.exception-day-card[open] summary {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.exception-day-card.is-closed-day .exception-status {
    color: #991b1b;
}

.exception-day-card.is-custom-day .exception-status {
    color: #92400e;
}

.exception-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.exception-date em,
.exception-reason {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.exception-status {
    color: var(--muted);
}

.exception-status.has-exception {
    color: var(--ink);
    font-weight: 700;
}

.exception-editor {
    padding: 14px;
}

.small-button {
    padding: 8px 12px;
    text-align: center;
}

@media (max-width: 760px) {
    .month-switcher,
    .month-picker-form {
        align-items: stretch;
        flex-direction: column;
    }

    .exception-day-card summary {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.opening-day-note {
    display: grid;
    gap: 6px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.opening-day-note.compact {
    margin: -2px 0 4px;
    padding: 10px 12px;
}

.opening-day-note > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.opening-day-note span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.opening-day-note strong {
    color: var(--ink);
}

.opening-day-note p {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
}

.opening-day-note small {
    color: var(--muted);
    font-weight: 700;
}

.opening-day-note.closed {
    border-color: #fecaca;
    background: #fef2f2;
}

.opening-day-note.closed strong,
.opening-day-note.closed p {
    color: #991b1b;
}

.opening-day-note.custom {
    border-color: #fde68a;
    background: #fffbeb;
}

.opening-day-note.custom strong,
.opening-day-note.custom p {
    color: #92400e;
}

.service-continue {
    margin-top: 18px;
}

/* Extra spacing before the final booking button. */
.booking-form > button[type="submit"] {
    margin-top: 20px;
}
/* Admin: több szolgáltatás és visszaigazoló e-mail */
.admin-service-picker {
    margin: 0;
    padding: 0;
    border: 0;
}

.admin-service-picker legend {
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-service-options {
    display: grid;
    gap: 8px;
}

.admin-service-option,
.admin-mail-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.admin-service-option {
    border-left: 5px solid var(--service-color, var(--teal));
}

.admin-service-option:has(input:checked) {
    border-color: var(--service-color, var(--primary));
    background: color-mix(in srgb, var(--service-color, var(--primary)) 8%, white);
}

.admin-mail-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(15, 118, 110, 0.06);
}

.admin-service-option input,
.admin-mail-option input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 auto;
}

.admin-service-option span {
    display: grid;
    gap: 3px;
}

.admin-service-copy strong {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-service-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--service-color, var(--teal));
    flex: 0 0 auto;
}

.admin-service-option small {
    color: var(--muted);
}

.admin-mail-option span {
    font-weight: 700;
}

/* Sikeres foglalás oldal */
.booking-success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.booking-success-card {
    width: min(560px, 100%);
    text-align: center;
    padding: clamp(28px, 6vw, 52px);
}

.booking-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.12);
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
}

.booking-success-card h1 {
    margin-top: 6px;
}

.booking-success-card .button {
    margin-top: 20px;
}

/* Admin szolgáltatásválasztó – kártyás nézet és összesítés */
.admin-service-picker {
    min-width: 0;
}

.admin-service-picker legend {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 14px;
}

.admin-service-options {
    display: grid;
    gap: 9px;
}

.admin-service-option {
    position: relative;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.admin-service-option:hover {
    border-color: rgba(15, 118, 110, .45);
    box-shadow: 0 7px 18px rgba(15, 23, 42, .06);
    transform: translateY(-1px);
}

.admin-service-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(15, 118, 110, .065);
    box-shadow: 0 0 0 2px rgba(15, 118, 110, .08);
}

.admin-service-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.admin-service-check {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    background: #fff;
    color: transparent;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    transition: .16s ease;
}

.admin-service-option:has(input:checked) .admin-service-check {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.admin-service-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.admin-service-copy strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
}

.admin-service-copy small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.admin-service-copy small span {
    display: inline-flex;
    align-items: center;
}

.admin-service-copy small span + span::before {
    content: '•';
    margin-right: 10px;
    color: #94a3b8;
}

.admin-service-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--line);
}

.admin-service-summary > div {
    min-width: 0;
    display: grid;
    gap: 3px;
    padding: 10px 11px;
    background: var(--soft);
}

.admin-service-summary span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.admin-service-summary strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.2;
}

.admin-service-summary > div:nth-child(2) strong {
    color: var(--primary);
}

@media (max-width: 430px) {
    .admin-service-summary {
        grid-template-columns: 1fr 1fr;
    }

    .admin-service-summary > div:last-child {
        grid-column: 1 / -1;
    }
}
