.venuex-ui-shell {
    --venuex-ui-sidebar-width: 278px;
    display: grid;
    grid-template-columns: var(--venuex-ui-sidebar-width) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 24px;
}

.venuex-ui-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 20px;
    padding: 24px 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(16, 24, 40, 0.96), rgba(14, 26, 55, 0.98));
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
    color: #f8fafc;
}

.venuex-ui-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.venuex-ui-brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.venuex-ui-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.venuex-ui-brand-mark span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.venuex-ui-brand-copy {
    display: grid;
    gap: 2px;
}

.venuex-ui-brand-copy p,
.venuex-ui-brand-copy h2 {
    margin: 0;
}

.venuex-ui-brand-copy p {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.venuex-ui-brand-copy h2 {
    font-size: 17px;
    color: #fff;
}

.venuex-ui-sidebar-scroll {
    display: grid;
    gap: 20px;
}

.venuex-ui-nav-group {
    display: grid;
    gap: 10px;
}

.venuex-ui-nav-group-label {
    margin: 0;
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.56);
}

.venuex-ui-nav-item,
.venuex-ui-nav-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.08);
    color: #dbeafe;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.venuex-ui-nav-button {
    cursor: pointer;
    font: inherit;
}

.venuex-ui-nav-item:hover,
.venuex-ui-nav-button:hover,
.venuex-ui-nav-item:focus-visible,
.venuex-ui-nav-button:focus-visible {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(96, 165, 250, 0.34);
    color: #fff;
    transform: translateX(2px);
}

.venuex-ui-nav-item.is-active,
.venuex-ui-nav-button.is-active {
    background: #2563eb;
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
}

.venuex-ui-sidebar-meta {
    display: grid;
    gap: 12px;
}

.venuex-ui-meta-card {
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.venuex-ui-meta-card p,
.venuex-ui-meta-card strong {
    margin: 0;
}

.venuex-ui-meta-card p {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.56);
}

.venuex-ui-meta-card strong {
    display: block;
    margin-top: 6px;
    color: #f8fafc;
}

.venuex-ui-stage {
    min-width: 0;
    display: grid;
    gap: 24px;
}

.venuex-ui-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.venuex-ui-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: min(100%, 440px);
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: #f8fafc;
}

.venuex-ui-search span {
    color: #94a3b8;
    font-size: 14px;
}

.venuex-ui-search input {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    outline: none;
    color: #0f172a;
}

.venuex-ui-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.venuex-ui-topbar-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
}

.venuex-ui-page-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    padding: 30px 32px;
    border: 1px solid rgba(191, 219, 254, 0.5);
    border-radius: 32px;
    background:
        linear-gradient(120deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.92) 58%, rgba(254, 226, 226, 0.64));
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.venuex-ui-page-copy {
    min-width: 0;
}

.venuex-ui-page-eyebrow {
    margin: 0 0 10px;
    color: #9f1239;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.venuex-ui-page-copy h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.venuex-ui-page-copy p {
    margin: 14px 0 0;
    max-width: 840px;
    color: #475569;
}

.venuex-ui-hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.venuex-ui-hero-pill {
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    color: #0f172a;
    white-space: nowrap;
}

.venuex-ui-main {
    display: grid;
    gap: 24px;
}

.venuex-ui-card {
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.venuex-ui-card-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.12;
    color: #0f172a;
}

.venuex-ui-card-copy {
    margin: 0;
    color: #64748b;
}

.venuex-ui-shell .venuex-login,
.venuex-ui-shell .venuex-dashboard,
.venuex-ui-shell .venuex-booking {
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.venuex-ui-shell .venuex-response {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .venuex-ui-shell {
        grid-template-columns: 1fr;
    }

    .venuex-ui-sidebar {
        position: static;
    }

    .venuex-ui-page-hero {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .venuex-ui-shell {
        padding: 16px;
        gap: 16px;
    }

    .venuex-ui-topbar {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .venuex-ui-search {
        min-width: 0;
    }

    .venuex-ui-page-hero {
        padding: 22px 20px;
    }

    .venuex-ui-page-copy h1 {
        font-size: 32px;
    }

    .venuex-ui-card {
        padding: 18px;
        border-radius: 22px;
    }
}
