/* sp-cinematic-crm-admin-ui */
:root {
    --sp-crm-bg: #050202;
    --sp-crm-panel: rgba(14, 8, 8, .78);
    --sp-crm-panel-strong: rgba(22, 11, 9, .92);
    --sp-crm-line: rgba(255, 230, 190, .14);
    --sp-crm-red: #e50914;
    --sp-crm-gold: #d6a84a;
    --sp-crm-cream: #fff4df;
    --sp-crm-muted: rgba(255, 244, 223, .64);
}
body.sp-crm-cinema-admin {
    background:
        radial-gradient(circle at 15% 0%, rgba(229, 9, 20, .18), transparent 34rem),
        radial-gradient(circle at 88% 8%, rgba(214, 168, 74, .13), transparent 30rem),
        linear-gradient(180deg, #070202 0%, #030101 55%, #080403 100%) !important;
    color: var(--sp-crm-cream);
}
body.sp-crm-cinema-admin::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .26;
    background-image:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}
body.sp-crm-cinema-admin main,
body.sp-crm-cinema-admin .content,
body.sp-crm-cinema-admin .container,
body.sp-crm-cinema-admin .container-fluid,
body.sp-crm-cinema-admin [class*="max-w-"] {
    position: relative;
    z-index: 1;
}
.sp-crm-shell {
    max-width: 1440px;
    margin: 0 auto 28px;
    padding: clamp(16px, 3vw, 34px);
}
.sp-crm-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214,168,74,.22);
    border-radius: 32px;
    padding: clamp(22px, 4vw, 46px);
    background:
        linear-gradient(135deg, rgba(229,9,20,.16), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(214,168,74,.2), transparent 24rem),
        linear-gradient(145deg, rgba(17,8,7,.96), rgba(4,2,2,.82));
    box-shadow: 0 34px 110px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}
.sp-crm-hero::after {
    content: "";
    position: absolute;
    inset: auto -14% -42% 42%;
    height: 250px;
    transform: rotate(-8deg);
    background: linear-gradient(90deg, transparent, rgba(214,168,74,.17), rgba(229,9,20,.18), transparent);
    filter: blur(8px);
}
.sp-crm-eyebrow {
    margin: 0 0 14px;
    color: var(--sp-crm-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .42em;
    text-transform: uppercase;
}
.sp-crm-hero h1 {
    margin: 0;
    max-width: 920px;
    color: #fff;
    font-size: clamp(34px, 6vw, 78px);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 900;
}
.sp-crm-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--sp-crm-muted);
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.75;
}
.sp-crm-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.sp-crm-stat {
    min-height: 92px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.045);
    padding: 16px;
}
.sp-crm-stat strong {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}
.sp-crm-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255,244,223,.58);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
}
.sp-crm-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    gap: 14px;
    margin: 18px 0 24px;
}
.sp-crm-search,
.sp-crm-map {
    border: 1px solid var(--sp-crm-line);
    border-radius: 24px;
    background: rgba(8,4,4,.72);
    box-shadow: 0 18px 60px rgba(0,0,0,.32);
}
.sp-crm-search {
    padding: 16px;
}
.sp-crm-search input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 15px 18px;
    outline: none;
}
.sp-crm-search input:focus {
    border-color: rgba(214,168,74,.55);
    box-shadow: 0 0 0 4px rgba(214,168,74,.1);
}
.sp-crm-map {
    padding: 16px;
}
.sp-crm-map-title {
    margin: 0 0 10px;
    color: var(--sp-crm-gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .32em;
}
.sp-crm-map-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sp-crm-map-links a {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 9px 12px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 12px;
    background: rgba(255,255,255,.05);
}
.sp-crm-map-links a:hover {
    border-color: rgba(229,9,20,.55);
    color: #fff;
    background: rgba(229,9,20,.13);
}
body.sp-crm-cinema-admin .card,
body.sp-crm-cinema-admin .box,
body.sp-crm-cinema-admin section,
body.sp-crm-cinema-admin form,
body.sp-crm-cinema-admin table,
body.sp-crm-cinema-admin .rounded,
body.sp-crm-cinema-admin [class*="rounded-"] {
    border-color: rgba(255, 230, 190, .14) !important;
}
.sp-crm-cinema-admin .sp-crm-panelized {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sp-crm-line) !important;
    border-radius: 26px !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(10,5,5,.72) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.36) !important;
}
.sp-crm-cinema-admin .sp-crm-panelized::before {
    content: attr(data-crm-label);
    display: inline-flex;
    margin: 14px 14px 0;
    border: 1px solid rgba(214,168,74,.3);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--sp-crm-gold);
    background: rgba(214,168,74,.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.sp-crm-cinema-admin table {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(5,2,2,.72) !important;
}
.sp-crm-cinema-admin th {
    color: rgba(255,244,223,.62) !important;
    font-size: 11px !important;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: rgba(255,255,255,.055) !important;
}
.sp-crm-cinema-admin td {
    border-color: rgba(255,255,255,.08) !important;
}
.sp-crm-cinema-admin input,
.sp-crm-cinema-admin select,
.sp-crm-cinema-admin textarea {
    border-color: rgba(255,255,255,.13) !important;
    border-radius: 16px !important;
}
.sp-crm-cinema-admin button,
.sp-crm-cinema-admin .btn,
.sp-crm-cinema-admin a[class*="btn"],
.sp-crm-cinema-admin input[type="submit"] {
    border-radius: 999px !important;
}
.sp-crm-cinema-admin .sp-crm-highlight-action,
.sp-crm-cinema-admin button[type="submit"],
.sp-crm-cinema-admin input[type="submit"] {
    border: 1px solid rgba(229,9,20,.55) !important;
    background: linear-gradient(135deg, #e50914, #8f050b) !important;
    color: #fff !important;
    box-shadow: 0 16px 50px rgba(229,9,20,.22) !important;
}
.sp-crm-empty-state {
    margin: 18px 0;
    border: 1px dashed rgba(214,168,74,.28);
    border-radius: 24px;
    padding: 24px;
    background: rgba(214,168,74,.06);
    color: rgba(255,244,223,.72);
}
.sp-crm-hidden-by-search { display: none !important; }
@media (max-width: 900px) {
    .sp-crm-shell { padding: 14px; }
    .sp-crm-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-crm-toolbar { grid-template-columns: 1fr; }
    .sp-crm-hero { border-radius: 24px; }
}
@media (max-width: 560px) {
    .sp-crm-stats { grid-template-columns: 1fr; }
    .sp-crm-map-links { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .sp-crm-map-links a { white-space: nowrap; }
}
/* sp-crm-svg-icon-size-guard */
body.sp-crm-cinema-admin svg {
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    flex: 0 0 auto !important;
    vertical-align: middle !important;
}
body.sp-crm-cinema-admin button svg,
body.sp-crm-cinema-admin a svg,
body.sp-crm-cinema-admin .btn svg,
body.sp-crm-cinema-admin [role="button"] svg {
    max-width: 1rem !important;
    max-height: 1rem !important;
    width: 1rem !important;
    height: 1rem !important;
}
body.sp-crm-cinema-admin .sp-crm-hero svg,
body.sp-crm-cinema-admin .sp-crm-toolbar svg,
body.sp-crm-cinema-admin .sp-crm-panelized svg {
    max-width: 1.1rem !important;
    max-height: 1.1rem !important;
    width: 1.1rem !important;
    height: 1.1rem !important;
}
body.sp-crm-cinema-admin svg[width="100%"],
body.sp-crm-cinema-admin svg[height="100%"],
body.sp-crm-cinema-admin svg:not([width]),
body.sp-crm-cinema-admin svg:not([height]) {
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}
body.sp-crm-cinema-admin img[src$=".svg"] {
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
body.sp-crm-cinema-admin table svg,
body.sp-crm-cinema-admin table img[src$=".svg"] {
    max-width: 1rem !important;
    max-height: 1rem !important;
}
/* /sp-crm-svg-icon-size-guard */
/* sp-admin-crm-route-svg-hard-limit */
body.sp-crm-cinema-admin svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin main svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin header svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin nav svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin aside svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin [class*="icon"] svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin [class*="Icon"] svg:not(.apexcharts-svg):not([data-sp-large-svg]) {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 18px !important;
    max-height: 18px !important;
    aspect-ratio: 1 / 1 !important;
    flex: 0 0 18px !important;
    object-fit: contain !important;
    overflow: visible !important;
    vertical-align: middle !important;
}
body.sp-crm-cinema-admin button svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin a svg:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin table svg:not(.apexcharts-svg):not([data-sp-large-svg]) {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-basis: 16px !important;
}
body.sp-crm-cinema-admin svg[width="100%"]:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin svg[height="100%"]:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin svg.w-full:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin svg.h-full:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin svg[class*="w-full"]:not(.apexcharts-svg):not([data-sp-large-svg]),
body.sp-crm-cinema-admin svg[class*="h-full"]:not(.apexcharts-svg):not([data-sp-large-svg]) {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}
body.sp-crm-cinema-admin img[src$=".svg"]:not([data-sp-large-svg]) {
    width: 18px !important;
    height: 18px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
}
/* /sp-admin-crm-route-svg-hard-limit */