/* AdminPageShell — visual baseline shared with /admin/bot-settings */

.pcw-admin-shell {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1760px;
    margin: 0 auto;
    padding: 26px 22px 46px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 135, 179, 0.08), transparent 28%),
        radial-gradient(circle at 82% 4%, rgba(53, 183, 255, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(8, 13, 23, 0.98), rgba(5, 9, 15, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 64px rgba(0, 0, 0, 0.32);
}

.pcw-admin-shell--messaging {
    width: min(100%, 2320px);
    max-width: calc(100vw - 48px);
}

.pcw-admin-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 135, 179, 0.28);
    border-radius: 12px;
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 135, 179, 0.26), transparent 34%),
        linear-gradient(135deg, rgba(7, 15, 28, 0.98), rgba(9, 22, 39, 0.96) 46%, rgba(11, 20, 35, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.pcw-admin-hero-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pcw-admin-eyebrow {
    color: #48b0d1;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.pcw-admin-title {
    color: #fff;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0;
}

.pcw-admin-subtitle {
    color: rgba(226, 235, 248, 0.78);
}

.pcw-admin-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pcw-admin-shell .mud-button-filled-primary {
    color: #f7fbff !important;
    border: 1px solid rgba(72, 176, 209, 0.18) !important;
    background: linear-gradient(135deg, #075f7a, #0a4f66) !important;
    box-shadow: 0 10px 24px rgba(0, 88, 118, 0.24) !important;
}

.pcw-admin-shell .mud-button-filled-primary:hover {
    background: linear-gradient(135deg, #0a6f8d, #0b5d78) !important;
}

.pcw-admin-shell .mud-button-outlined-primary {
    color: #67c7e3 !important;
    border-color: rgba(0, 135, 179, 0.46) !important;
}

.pcw-admin-shell .mud-button-outlined-primary:hover {
    background: rgba(0, 135, 179, 0.1) !important;
}

.pcw-admin-custom-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 135, 179, 0.14);
    border-radius: 10px;
    background: rgba(9, 14, 24, 0.92);
}

.pcw-admin-tab-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    background: transparent;
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.pcw-admin-tab-button:hover {
    color: #48b0d1;
    border-color: rgba(0, 135, 179, 0.42);
    background: rgba(0, 135, 179, 0.08);
}

.pcw-admin-tab-button--active {
    color: #48b0d1;
    border-color: rgba(0, 135, 179, 0.56);
    background: rgba(0, 135, 179, 0.14);
    box-shadow: 0 0 0 1px rgba(0, 135, 179, 0.22), 0 4px 14px rgba(0, 135, 179, 0.16);
}

.pcw-admin-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    margin-left: 4px;
    border-radius: 999px;
    background: rgba(0, 135, 179, 0.2);
    color: #48b0d1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
}

.pcw-admin-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Shared admin drawer fallback for server-rendered admin routes. */
.admin-side-drawer {
    position: fixed;
    inset: 0;
    z-index: 1400;
}

.admin-side-drawer__scrim {
    position: fixed;
    inset: 0;
    z-index: 1399;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.admin-side-drawer__panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1400;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    border-left: 1px solid rgba(29, 49, 72, 0.95);
    background: linear-gradient(180deg, #0b1524, #07111d);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    animation: admin-side-drawer-enter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-side-drawer__header,
.admin-side-drawer__footer {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(29, 49, 72, 0.82);
}

.admin-side-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.admin-side-drawer__header small {
    color: var(--cad-primary, #48b0d1);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.admin-side-drawer__header h2 {
    margin: 3px 0 0;
    color: var(--cad-text-primary, #f7fbff);
    font-size: 1.15rem;
    font-weight: 900;
}

.admin-side-drawer__body {
    min-height: 0;
    overflow: auto;
    padding: 18px 20px;
}

.admin-side-drawer__footer {
    border-top: 1px solid rgba(29, 49, 72, 0.82);
    border-bottom: 0;
}

@media (max-width: 720px) {
    .admin-side-drawer__panel {
        width: 100vw;
        max-width: 100vw;
    }
}

@keyframes admin-side-drawer-enter {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Cards / tables inside an admin shell get the bot-settings card treatment */
.pcw-admin-shell .pcw-card {
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    background: linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(13, 18, 26, 0.98)) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
}

.pcw-admin-shell .mud-table {
    background: transparent !important;
}

.pcw-admin-empty {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--pcw-text-muted);
    border: 1px dashed rgba(0, 135, 179, 0.22);
    border-radius: 14px;
    background: rgba(0, 135, 179, 0.035);
    padding: 28px;
}

.pcw-admin-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 24, 34, 0.85), rgba(13, 18, 26, 0.85));
}

@media (max-width: 960px) {
    .pcw-admin-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    .pcw-admin-hero-actions {
        justify-content: stretch;
        width: 100%;
    }
}

@media (min-width: 2600px) {
    .pcw-admin-shell--messaging {
        width: min(100%, 2880px);
        max-width: calc(100vw - 96px);
    }
}

/* Template dashboard pages: /admin/lineup-templates and /admin/image-templates */

.template-page {
    min-height: 100vh;
    max-width: 1680px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 16px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 135, 179, 0.12), transparent 34%),
        radial-gradient(circle at 82% 8%, rgba(124, 58, 237, 0.25), transparent 38%),
        #050b14;
}

.template-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.18) 0%, rgba(37, 99, 235, 0.12) 44%, rgba(124, 58, 237, 0.25) 100%);
}

.template-hero__copy {
    min-width: 0;
    max-width: 720px;
}

.template-hero__eyebrow {
    margin-bottom: 12px;
    color: #22d3ee;
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.template-hero__title {
    margin: 0;
    color: #f8fafc;
    font-size: 40px;
    line-height: 48px;
    font-weight: 850;
    letter-spacing: 0;
}

.template-hero__description {
    margin: 10px 0 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 22px;
}

.template-hero__action {
    min-height: 48px;
    padding: 0 22px !important;
    border-radius: 8px !important;
    color: #f7fbff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #075f7a 0%, #0a4663 48%, #102d4a 100%) !important;
    box-shadow: 0 14px 28px rgba(0, 88, 118, 0.28) !important;
    white-space: nowrap;
    transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.template-hero__action:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.template-hero__action:focus-visible,
.template-empty__primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 135, 179, 0.26), 0 14px 28px rgba(0, 88, 118, 0.28) !important;
}

.template-filters {
    display: grid;
    grid-template-columns: minmax(280px, 1.8fr) repeat(4, minmax(150px, 1fr)) auto;
    gap: 20px;
    align-items: end;
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(16px);
}

.template-filters__search,
.template-filters__field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.template-filters__label {
    color: #94a3b8;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}

.template-filters__search-control {
    position: relative;
    display: flex;
    align-items: center;
}

.template-filters__search-control .mud-icon-root {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    pointer-events: none;
}

.template-filters input,
.template-filters select {
    width: 100%;
    height: 44px;
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    color: #f8fafc;
    background: rgba(8, 14, 25, 0.72);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.template-filters input {
    padding: 0 14px 0 42px;
}

.template-filters select {
    padding: 0 12px;
}

.template-filters input::placeholder {
    color: #94a3b8;
}

.template-filters input:hover,
.template-filters select:hover {
    border-color: rgba(148, 163, 184, 0.28);
}

.template-filters input:focus,
.template-filters select:focus,
.template-sort-row__select select:focus {
    border-color: rgba(56, 189, 248, 0.70);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.template-filters__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.72);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease, transform 120ms ease, opacity 120ms ease;
}

.template-filters__clear:hover:not(:disabled),
.template-empty__secondary:hover {
    color: #f8fafc;
    background: rgba(51, 65, 85, 0.82);
}

.template-filters__clear:active:not(:disabled) {
    transform: scale(0.98);
}

.template-filters__clear:focus-visible,
.template-view-toggle__button:focus-visible,
.template-empty__secondary:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.template-filters__clear:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.template-sort-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.template-sort-row__count {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 22px;
}

.template-sort-row__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.template-sort-row__select select {
    width: 230px;
    max-width: 100%;
    height: 40px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    color: #cbd5e1;
    background: rgba(8, 14, 25, 0.72);
    font: inherit;
    font-size: 14px;
    padding: 0 12px;
    outline: none;
}

.template-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    padding: 4px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
}

.template-view-toggle__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 32px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #94a3b8;
    background: transparent;
    cursor: pointer;
}

.template-view-toggle__button:hover,
.template-view-toggle__button--active {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(37, 99, 235, 0.32);
}

.template-loading-grid,
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 16px;
    margin-top: 16px;
}

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

.template-loading-card {
    min-height: 230px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.08), transparent),
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(10, 16, 27, 0.92));
    background-size: 220% 100%, 100% 100%;
    animation: template-shimmer 1.4s ease-in-out infinite;
}

@keyframes template-shimmer {
    from {
        background-position: 220% 0, 0 0;
    }

    to {
        background-position: -220% 0, 0 0;
    }
}

.template-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(10, 16, 27, 0.92) 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 180ms cubic-bezier(0.2, 0.8, 0.2, 1), background 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.template-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.26);
    background: linear-gradient(180deg, rgba(18, 29, 47, 0.96) 0%, rgba(10, 16, 27, 0.96) 100%);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(56, 189, 248, 0.16);
}

.template-card--muted {
    opacity: 0.74;
}

.template-card__header {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.template-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    color: #38bdf8;
    background: rgba(14, 165, 233, 0.14);
}

.template-card__icon--randomizer,
.template-card__icon--renderassets,
.template-card__icon--uploaded {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.14);
}

.template-card__icon--card,
.template-card__icon--banner {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.14);
}

.template-card h2 {
    display: -webkit-box;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #f8fafc;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.template-card__top-pills,
.template-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.template-card__top-pills {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 2px;
}

.template-card__description {
    display: -webkit-box;
    min-height: 40px;
    margin: 0;
    overflow: hidden;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.template-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 20px;
}

.template-card__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: auto;
}

.template-card__actions .mud-icon-button {
    width: 34px;
    height: 34px;
    min-width: 34px !important;
    min-height: 34px !important;
    border-radius: 8px !important;
    color: #cbd5e1 !important;
}

.template-card__actions .mud-icon-button:hover {
    color: #f8fafc !important;
    background: rgba(51, 65, 85, 0.55) !important;
}

.template-card__actions .template-card__delete {
    color: #fb7185 !important;
}

.template-card__actions .template-card__delete:hover {
    color: #fb7185 !important;
    background: rgba(244, 63, 94, 0.12) !important;
}

.template-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.template-pill--active {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.58);
    background: rgba(16, 185, 129, 0.16);
}

.template-pill--inactive,
.template-pill--hidden,
.template-pill--neutral {
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(100, 116, 139, 0.16);
}

.template-pill--public {
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.56);
    background: rgba(99, 102, 241, 0.18);
}

.template-pill--regular,
.template-pill--generated,
.template-pill--static {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(14, 165, 233, 0.14);
}

.template-pill--randomizer,
.template-pill--renderassets,
.template-pill--uploaded {
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.48);
    background: rgba(245, 158, 11, 0.16);
}

.template-pill--shirt,
.template-pill--avatar,
.template-pill--club-logo {
    color: #22d3ee;
    border-color: rgba(6, 182, 212, 0.42);
    background: rgba(6, 182, 212, 0.18);
}

.template-pill--card,
.template-pill--banner {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.42);
    background: rgba(59, 130, 246, 0.16);
}

.template-pill--background,
.template-pill--default,
.template-pill--other {
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.42);
    background: rgba(139, 92, 246, 0.14);
}

.template-empty {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding: 34px 22px;
    text-align: center;
    border: 1px dashed rgba(56, 189, 248, 0.30);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.64);
}

.template-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: #38bdf8;
    background: rgba(14, 165, 233, 0.14);
}

.template-empty h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
}

.template-empty p {
    max-width: 460px;
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 22px;
}

.template-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.template-empty__primary {
    min-height: 44px;
    border-radius: 8px !important;
    color: #f7fbff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #075f7a 0%, #0a4663 48%, #102d4a 100%) !important;
}

.template-empty__secondary {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.72);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

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

@media (max-width: 1200px) {
    .template-filters {
        grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 900px) {
    .template-page {
        padding: 24px;
    }

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

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

    .template-sort-row,
    .template-sort-row__controls {
        align-items: stretch;
        flex-direction: column;
    }

    .template-sort-row__select select {
        width: 100%;
    }

    .template-view-toggle {
        align-self: flex-start;
    }

    .template-loading-grid,
    .template-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    }
}

@media (max-width: 640px) {
    .template-page {
        padding: 16px;
    }

    .template-hero {
        padding: 24px 18px;
    }

    .template-hero__title {
        font-size: 32px;
        line-height: 40px;
    }

    .template-hero__action,
    .template-empty__actions,
    .template-empty__primary,
    .template-empty__secondary {
        width: 100%;
    }

    .template-filters {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .template-loading-grid,
    .template-grid {
        grid-template-columns: 1fr;
    }

    .template-card__top-pills {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}
