:root {
    --bg: #f6f1ea;
    --bg-deep: #efe4d6;
    --ink: #1f2421;
    --muted: #6f6a64;
    --primary: #0f5c5c;
    --primary-strong: #0b4c4c;
    --accent: #e76f51;
    --accent-soft: #f4a261;
    --card: #ffffff;
    --stroke: rgba(31, 36, 33, 0.12);
    --shadow: 0 20px 50px rgba(15, 92, 92, 0.12);
}

[data-theme="dark"] {
    --bg: #121212;
    --bg-deep: #1e1e1e;
    --ink: #e0e0e0;
    --muted: #a0a0a0;
    --primary: #4db6ac;
    --primary-strong: #80cbc4;
    --accent: #ff8a65;
    --accent-soft: #ffab91;
    --card: #1e1e1e;
    --stroke: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 10% 10%, var(--bg) 0%, var(--bg) 35%, var(--bg-deep) 100%);
    min-height: 100vh;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

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

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ambient__ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(231, 111, 81, 0.3);
    top: -120px;
    right: -120px;
    animation: spin 30s linear infinite;
}

.ambient__spark {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(15, 92, 92, 0.2), transparent 70%);
    bottom: -60px;
    left: -40px;
    filter: blur(10px);
    animation: float 12s ease-in-out infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem 0.75rem;
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.brand__mark {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 4px rgba(15, 92, 92, 0.15);
}

.brand__title {
    font-size: 1.1rem;
}

.nav {
    display: flex;
    gap: 1rem;
    font-weight: 500;
}

.nav a {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.nav a:hover {
    background: rgba(15, 92, 92, 0.12);
}

.nav__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__email {
    font-size: 0.9rem;
    color: var(--muted);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 0 1.5rem;
    animation: fadeUp 0.6s ease;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: var(--card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 92, 92, 0.08);
    animation: fadeUp 0.6s ease;
}

.stat p {
    font-size: 2rem;
    margin: 0;
}

.stat span {
    color: var(--muted);
    font-size: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    box-shadow: 0 12px 24px rgba(15, 92, 92, 0.22);
}

.form .button {
    width: 100%;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--primary-strong);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.button--ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(15, 92, 92, 0.3);
    box-shadow: none;
}

.button--ghost:hover {
    background: rgba(15, 92, 92, 0.08);
    transform: translateY(-1px);
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 1rem;
}

.form input,
.form select,
.form textarea {
    border-radius: 12px;
    border: 1px solid var(--stroke);
    padding: 0.7rem 0.9rem;
    font: inherit;
    background: var(--bg);
    color: var(--ink);
}

.form textarea {
    min-height: 90px;
    resize: vertical;
}

.form h2 {
    margin-top: 0;
}

.split {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    align-items: start;
}

.list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--stroke);
    transition: transform 0.15s ease;
}

.list__item:hover {
    transform: translateY(-1px);
    background: var(--bg-deep);
}

.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(231, 111, 81, 0.16);
    color: var(--accent);
}

.badge--active {
    background: rgba(22, 163, 74, 0.16);
    color: #15803d;
}

.badge--dead {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

.badge--inline {
    font-size: 0.7em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.table__row .badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
}

.table {
    display: grid;
    gap: 0.75rem;
}

.table__row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(31, 36, 33, 0.06);
}

.table--hosts .table__row {
    grid-template-columns: minmax(auto, 3fr) minmax(auto, 0.8fr) minmax(auto, 1fr) minmax(auto, 1.2fr) minmax(auto, 1fr);
}

.table--customers .table__row {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr) minmax(0, 2.4fr);
}

.table--customers-simplified .table__row {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 3fr) minmax(0, 1fr);
}

.table__row--head {
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid rgba(31, 36, 33, 0.12);
}

.table__row span {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.table__row form {
    margin: 0;
}

.inline-form {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.inline-form select {
    min-width: 180px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    padding: 0.5rem 0.75rem;
    font: inherit;
    background: #fcfaf7;
}

.link {
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.link:hover {
    text-decoration: underline;
}

.search {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

.search input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    padding: 0.7rem 1rem;
    font: inherit;
}

/* Search bar for list pages */
.search-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.search-bar input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid var(--stroke);
    padding: 0.6rem 1rem;
    font: inherit;
    background: var(--card);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent);
}

.muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.flash {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.flash__item {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(15, 92, 92, 0.12);
    color: var(--primary);
    font-weight: 500;
}

.flash__item--error {
    background: rgba(231, 111, 81, 0.18);
    color: var(--accent);
}

.flash__item--success {
    background: rgba(15, 92, 92, 0.15);
    color: var(--primary);
}

.empty {
    padding: 1.2rem;
    border: 1px dashed rgba(31, 36, 33, 0.2);
    border-radius: 16px;
    color: var(--muted);
    text-align: center;
}

/* ========================================
   PREMIUM LOGIN PAGE STYLES
   ======================================== */

body.auth .page {
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth {
    background: linear-gradient(135deg, #0a3d3d 0%, #062b2b 50%, #041e1e 100%);
}

.login-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 3rem;
    margin: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.login-card h1 {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2421;
    margin: 0 0 0.5rem;
    text-align: center;
}

.login-card .subtitle {
    text-align: center;
    color: #6f6a64;
    margin: 0 0 2rem;
    font-size: 1rem;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-card .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-card label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6f6a64;
}

.login-card input[type="email"],
.login-card input[type="password"],
.login-card input[type="text"] {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-size: 1.1rem;
    font-family: inherit;
    color: #1f2421;
    background: #f6f1ea;
    border: 1px solid rgba(31, 36, 33, 0.12);
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.login-card input:focus {
    background: #fff;
    border-color: #0f5c5c;
    box-shadow: 0 0 0 4px rgba(15, 92, 92, 0.12);
}

.login-card input::placeholder {
    color: #a0a0a0;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6f6a64;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #0f5c5c;
}

.password-toggle .hidden {
    display: none;
}

.login-card button[type="submit"] {
    width: 100%;
    padding: 1.1rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #0f5c5c 0%, #147a7a 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(15, 92, 92, 0.3);
}

.login-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 92, 92, 0.4);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 92, 92, 0.08);
    border-radius: 100px;
}

.login-brand__mark {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, #4db6ac, #e76f51);
}

.login-brand__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.login-title {
    font-family: "Fraunces", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.login-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.login-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.login-field input {
    width: 100%;
    padding: 1.3rem 1.5rem;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.login-field input::placeholder {
    color: var(--muted);
}

.login-field input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 92, 92, 0.12);
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.2rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #0f5c5c 0%, #147a7a 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(15, 92, 92, 0.35);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 92, 92, 0.45);
}

.login-button:active {
    transform: translateY(0);
}

.login-button svg {
    transition: transform 0.3s ease;
}

.login-button:hover svg {
    transform: translateX(4px);
}

.hint {
    font-size: 0.85rem;
    color: var(--muted);
}

.note {
    background: rgba(15, 92, 92, 0.08);
}

.section-title {
    margin-bottom: 1.5rem;
}

@media (max-width: 980px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .topbar {
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        order: 3;
    }

    .nav__meta {
        width: 100%;
        justify-content: space-between;
    }

    .table__row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-form select {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page {
        padding: 1.5rem 1rem 3rem;
    }

    .search {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions {
        width: 100%;
        flex-direction: column;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 36, 33, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--card);
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(20px);
    transition: transform 0.2s ease;
}

.modal-overlay.is-visible .modal {
    transform: translateY(0);
}

.modal__header {
    margin-bottom: 1.5rem;
}

.modal__title {
    margin: 0;
    font-size: 1.25rem;
}

.modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 2rem;
}

.modal__label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal__label span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.modal__select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    padding: 0.8rem 1rem;
    font: inherit;
    background: #fcfaf7;
}

select.modal__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f6a64' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.modal__select:focus {
    outline: none;
    background-color: #fff;
}

/* Simplified Customer Table */
.table--customers-simplified .table__row {
    grid-template-columns: 1.5fr 1fr 2.5fr auto;
    gap: 1.5rem;
    align-items: center;
}

.table__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    white-space: nowrap;
}

.table__actions .button {
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Global hidden class */
.hidden {
    display: none !important;
}

/* Customer Add Page */
.extracted-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.extracted-info__grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem 1rem;
}

.extracted-info__grid span {
    color: #666;
}

.host-error {
    color: #dc3545;
    background: #ffedef;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Customer Add Page Header */
.page-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.page-header__title {
    margin: 0;
    font-size: 1.25rem;
}

.back-btn {
    padding: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.back-btn svg {
    width: 14px;
    height: 14px;
}

.customer-add-form {
    max-width: 540px;
    margin: 0 auto;
}

/* Page Header Bar (Add Customer) */
.page-header-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.page-header-bar h1 {
    margin: 0.25rem 0 0 0;
    font-size: 1.5rem;
}

.page-header-bar .eyebrow {
    margin: 0;
}

/* Wizard - 2 Column Layout */
.wizard {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 1rem;
    row-gap: 0;
    max-width: 800px;
}

.wizard__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.wizard__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--stroke);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
    z-index: 1;
}

.wizard__number--active {
    background: var(--accent);
    color: #fff;
}

.wizard__number--completed {
    background: #28a745;
    color: #fff;
}

.wizard__line {
    width: 2px;
    flex: 1;
    background: var(--stroke);
    margin: 0.5rem 0;
    min-height: 20px;
}

.wizard__step {
    padding-bottom: 2rem;
}

.wizard__step--inactive {
    opacity: 0.35;
    pointer-events: none;
}

.wizard__step--completed {
    opacity: 0.5;
}

.wizard__title {
    margin: 0.25rem 0 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}



/* Form Steps */
.form-step {
    animation: fadeIn 0.3s ease;
}

.form-step__desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin: -0.5rem 0 1.5rem 0;
}

.form-step__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-step__actions .button {
    flex: 1;
}

/* Email Preview */
.email-preview-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--stroke);
}

.email-preview-frame {
    width: 100%;
    min-height: 300px;
    border: none;
    background: #fff;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel Filter Group */
.filter-group {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem;
    border-radius: 999px;
    gap: 0;
}

.filter-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s ease;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Sortable Header */
.sortable-header {
    cursor: pointer;
    user-select: none;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    width: fit-content;
}

.sortable-header svg {
    display: block;
    flex-shrink: 0;
}

.sortable-header:hover {
    color: var(--ink);
}

.panel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-top: -1rem;
    margin-bottom: 2rem;
}