:root {
    --aa-link-color: #6aef6b;
    --aa-link-hover-color: #d878ff;
    --aa-bg-main: #120219;
    --aa-bg-card: #240037;
    --aa-text-light: silver;
    --aa-border: #ccc;
    --aa-radius-sm: 7px;
    --aa-radius-md: 10px;
    --aa-radius-lg: 20px;
    --aa-nav-link-padding-x: 1rem;
    --aa-nav-link-padding-y: 0.5rem;
    --aa-nav-link-font-weight: normal;
    --aa-nav-link-font-size: 1rem;
    --aa-danger-color: red;
    --aa-warning-color: yellow;
    --aa-ok-color: green;
}

/* Base */
.grecaptcha-badge { visibility: hidden; }
body { background-color: var(--aa-bg-main); }
.aa-bg {
    width: 100%;
    background: linear-gradient(180deg, rgba(68, 0, 105, 1) 0%, rgba(0, 149, 12, 1) 100%);
}
.body-content {
    margin-top: 5px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 95%;
}
.dl-horizontal dt { white-space: normal; }
input, select, textarea { max-width: 280px; }
ul { margin-left: 40px; }
li { color: #5efa20; }
h1 { color: var(--aa-link-hover-color); font-style: italic; }
h3 { color: #b763d9; font-family: Verdana, arial, sans-serif; }
h4 { color: var(--aa-link-color); }
h5 { color: yellow; font-weight: bold; }
a {
    color: cyan;
    font-size: 12pt !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
a:hover { color: #fff200; text-decoration: underline; }
html.wait, html.wait * { cursor: wait !important; }

/* Shared text + layout helpers */
.pointer, .aa-ptr { cursor: pointer; }
.showflx { display: flex; }
.aacenter, .aa-center { text-align: center !important; }
.aa-left { text-align: left; }
.wpnowrap { white-space: nowrap !important; }
.fonts { font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif !important; }
.mono { font-family: monospace; color: white; }
.clr-silver { color: silver; }
.clr-green { color: #6aef6b; }
.clr-purple { color: #c129ff; }
.clr-medpurp { color: #9204ff; }
.clr-yel { color: yellow; }
.clr-drkyel { color: #edd93b; }
.fbold { font-weight: bold; }
.fnorm { font-weight: normal; }
.vert-top { vertical-align: top; }
.allin-txt { font-size: 1.2em; color: white; }
.nvrexp { color: aqua; }
.holow { font-size: 1.6em; color: yellow; }

/* Flex utilities */
.eflx-row { display: flex; flex-flow: row wrap; }
.eflx-rown { display: flex; flex-flow: row nowrap; }
.eflx-col { display: flex; flex-flow: column wrap; }
.eflx-coln { display: flex; flex-flow: column nowrap; }
.eflx-ctr { justify-content: center; }
.eflx-start { justify-content: flex-start; }
.eflx-end { justify-content: flex-end; }
.eflx-actr { align-items: center; }
.eflx-atop { align-items: flex-start; }
.flxgrow { flex: 1; }
.flxresize { flex: 1 1 auto; }
.flxshrink { flex-shrink: 1; }
.flxalign-stretch { align-items: stretch; }
.g5 { gap: 5px; } .g10 { gap: 10px; } .g15 { gap: 15px; } .g20 { gap: 20px; } .g30 { gap: 30px; } .g40 { gap: 40px; } .g50 { gap: 50px; }
.w100p { width: 100%; } .w90p { width: 90%; } .w80p { width: 80%; } .w70p { width: 70%; } .w60p { width: 60%; } .w50p { width: 50%; } .w40p { width: 40%; } .w30p { width: 30%; } .w20p { width: 20%; } .w10p { width: 10%; } .w0p { width: 0%; }
.h100p { height: 100%; } .h100vh { height: 100vh; }
.mrgnbot-5 { margin-bottom: 5px; } .mrgnbot-10 { margin-bottom: 10px; } .mrgnbot-15 { margin-bottom: 15px; } .mrgnbot-20 { margin-bottom: 20px; } .mrgnbot-30 { margin-bottom: 30px; }
.mrgntop-5 { margin-top: 5px; } .mrgntop-10 { margin-top: 10px; } .mrgntop-15 { margin-top: 15px; } .mrgntop-20 { margin-top: 20px; } .mrgntop-30 { margin-top: 30px; }
.pd-5, .pd5 { padding: 5px; } .pd-10, .pd10 { padding: 10px; } .pd-15 { padding: 15px; } .pd-20, .pd20 { padding: 20px; }

/* Border + background utilities */
.aa-bdr-rad5 { border-radius: 5px; }
.aa-bdr-rad7 { border-radius: 7px; }
.aa-bdr-rad10 { border-radius: 10px !important; }
.aa-bdr-rad20 { border-radius: 20px; }
.aa-brd-ccc, .aa-brd-999, .aa-brd-666, .aa-brd-555, .aa-brd-444, .aa-brd-333, .aa-brd-222, .aa-brd-111 { border-width: 1px; border-style: solid; }
.aa-brd-ccc { border-color: #ccc; } .aa-brd-999 { border-color: #999; } .aa-brd-666 { border-color: #666; } .aa-brd-555 { border-color: #555; } .aa-brd-444 { border-color: #444; } .aa-brd-333 { border-color: #333; } .aa-brd-222 { border-color: #222; } .aa-brd-111 { border-color: #111; }
.aa-brd4-lime { border: 4px solid limegreen; }
.aa-bdr-drkpur { border: 1px solid #240037; }
.bg-white { background-color: white; } .bg-f7 { background-color: #f7f7f7; } .bg-000 { background-color: black; } .bg-111 { background-color: #111; } .bg-222 { background-color: #222; } .bg-333 { background-color: #333; } .bg-444 { background-color: #444; } .bg-555 { background-color: #555; } .bg-666 { background-color: #666; } .bg-999 { background-color: #999; } .bg-ccc { background-color: #ccc; }
.bg-pur-1 { background-color: #100019; } .bg-pur-2 { background-color: #170024; } .bg-pur-3 { background-color: #1f0030; } .bg-pur-4 { background-color: #2a0041; } .bg-pur-5 { background-color: #350052; } .bg-pur-6 { background-color: #400063; }
.bg-drkpur { background-color: #240037; }

/* Links + buttons (old class aliases retained) */
.aa-nav-link, .aa-link, .smswannalnk {
    display: block;
    padding: var(--aa-nav-link-padding-y) var(--aa-nav-link-padding-x);
    color: var(--aa-link-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.aa-nav-link:hover, .aa-nav-link:focus, .aa-link:hover, .aa-link:focus, .smswannalnk:hover {
    color: var(--aa-link-hover-color);
}
.aa-nav-link.disabled { color: #ccc; pointer-events: none; cursor: default; }

.aa-btn, .aa-btn2, .aa-btn3, .sms-btn {
    display: block;
    border-radius: var(--aa-radius-sm);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
}
.aa-btn {
    padding: var(--aa-nav-link-padding-y) var(--aa-nav-link-padding-x);
    color: #51007a;
    background-color: silver;
}
.aa-btn2 {
    padding: 0 5px;
    font-size: 1em;
    color: #51007a;
    background-color: silver;
}
.aa-btn3 {
    padding: 5px 10px;
    font-size: 1em;
    color: black;
    background-color: #c8a729;
}
.sms-btn {
    width: 105px;
    height: 32px;
    padding: 0 5px;
    margin: 2px;
    background-color: #666;
    color: silver;
}
.aa-btn:not(:disabled):hover, .aa-btn2:not(:disabled):hover, .aa-btn3:not(:disabled):hover, #partybtnlink:hover {
    color: silver;
    border: 1px solid #999;
    background-color: #51007a !important;
}
.aa-btn3:disabled { color: #ccc; border: 1px solid #444; background-color: #999 !important; }

#partybtn, #partybtnlink {
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 400px;
    height: 40px;
    text-align: center;
    font: bold 1.5em "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    background-color: #23ff2e;
}
#partybtnlink { margin: 30px; width: 350px !important; }

/* AA core sections */
.aa-gc { border-radius: 20px; width: 100%; background-color: #240037; margin: 5px; color: silver; padding: 10px; }
.aa-gc-hdr { width: 100%; color: #6aef6b; text-align: center; font-size: 0.8em; font-weight: bold; }
.aa-ftr { background-color: #1b0027; padding: 25px 0 20px; width: 100%; margin-top: 40px; }
.aa-ftr-contact { color: #d5d5d5; font-size: 0.8em; }
.aa-ftr-contact-h { color: white; font-size: 1.4em; font-style: italic; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif, raleway; }
.aa-copyright { margin-top: 20px; color: #d3ffb3; font-size: 0.8em; width: 100%; text-align: center; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif, raleway; }
.aa-hr-wd { font-weight: bold; color: #0cdbe9; }
.aa-disclaimer { font-size: 0.9em; color: #999; }
.aa-logo-mrgn-r { margin-right: 20px !important; }
.aa-logo-mrgn-r-big { margin-right: 60px !important; }
.aa-logo-mrgn-l { margin-left: 20px !important; }
.aa-bg.navbar .aa-logo-mrgn-r img { max-height: 90px; width: auto; }
.aa-bg.navbar .aa-logo-mrgn-r-big img { max-height: 52px; width: auto; }
.aa-text-norm, .txt {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: silver;
    font-size: 1.3em;
}
.aa-catchhdr, .aa-abouthdr, .hdr {
    font-family: "Trebuchet MS", "Farsan", Calibri, sans-serif, cursive;
    color: #cb89ff;
}
.aa-catchphr{font-size:1.5em;}
.aa-catchphr, .aa-catchphr-lite, .aa-about {
    font-family: "Trebuchet MS","Farsan", Calibri, sans-serif, cursive;
    color: silver;
}
.aa-catchphr-lite { color: #bafea5; font-size: 2em; }
.aa-page-container { text-align: left !important; padding-bottom: 20px !important; width: 80% !important; }
.aa-page-container-center, .aa-page-container-center-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100% !important;
}
.aa-center-flex { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; width: 100%; }
.section-container { border-top: 1px solid #666; }
.happenings-container { margin-top: 30px; width: 100%; }
.aa-wkly-sched-hdr { text-align: left; font-size: 30pt; font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive; color: silver; margin: 10px; }
.aa-comingsoon { font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive; color: #0eff1a; width: 80%; text-align: center; font-size: 22pt; margin: 10px 0; }

/* Dialog + modal */
.aa-dialog {
    position: absolute;
    z-index: 2000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ccc;
    width: 400px;
    border-radius: 20px;
    background-color: black;
    box-shadow: 0 0 15px #521073;
    display: none;
    flex-direction: column;
}
.aa-dialog-title {
    width: 100%;
    height: 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #bd37ff;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aa-dialog-title-content { font-family: "Capriola", sans-serif; color: black; }
.aa-dialog-content-container {
    width: 100%;
    min-height: 100px;
    padding: 5px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aa-dialog-content { width: 100%; text-align: center; background-color: #eee; }
.aa-dialog-btns {
    width: 100%;
    height: 40px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.aa-dialog .aa-btn { width: 75px; height: 30px; border: 1px solid #333; display: table-cell; vertical-align: middle; text-align: center; }
.aa-dialog .aa-btn:hover { filter: brightness(1.5); }
.aa-btn-ok { background-color: #70c25a; color: black; }
.aa-btn-cancel { background-color: #d44545; color: black; }
.aa-modal {
    display: none;
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Alerts + banners */
.aa-alert {
    border: 2px solid yellow;
    border-radius: 15px;
    max-width: 85%;
    padding: 10px;
    background-color: #444;
    margin: 10px;
    display: flex;
    gap: 20px;
}
.aa-alert-txt { color: silver; font-size: 1em; text-align: justify; }
.aa-alert-ico { font-size: 24pt; color: yellow; z-index: 2000; }
div.aabanner {
    min-width: 100%;
    margin: 0 auto 20px;
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: space-evenly;
}
.aa-alert-content {
    padding: 5px;
    font-family: "Trebuchet MS","Farsan", Calibri,  sans-serif, cursive;
    font-size: 1.2em;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 2px;
    border-radius: 7px;
    min-width: 400px;
    max-width: 49%;
    flex: 1 1 auto;
}
.aa-alert-content-single { min-width: 99% !important; max-width: 99% !important; }
.aa-alert-item {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 5px;
    margin-bottom: 2px;
    border-radius: 7px;
    max-width: 100%;
    gap: 20px;
}
.aa-alert-content-default, div.aabanner-content {
    background-color: #b77dd9;
    border: 1px solid #b77dd9;
}
div.aabanner-content {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    font-family: "Trebuchet MS","Farsan", Calibri,  sans-serif, cursive;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
div.aabanner-close { flex: 1; display: flex; justify-content: flex-end; }
.aabannerx { color: black; } .aabannerx:hover { color: white; }
.aabanner-msg { font-size: 0.9em; }
.aabanner-tle { font-size: 1em; }
.fa-triangle-exclamation { color: yellow; font-size: 1.2em; }

/* Party + pricing */
.aa-detail { height: auto; width: 100% !important; padding: 10px; border-radius: 20px; max-width: 90%; }
.aa-page-container.aa-text-norm h3 {
    color: #b763d9;
}
.aa-pfrmcontainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    background-color: #222;
    border-radius: 20px;
    padding: 10px;
}
.aa-pfrmsec { display: flex; flex-direction: column; min-width: 40%; }
.aa-pfrmbsec {
    display: none;
    border: 1px solid #ccc;
    border-radius: 15px;
    flex-direction: column;
    min-width: 100%;
}
#pfrmbdetails {
    max-width: 100%;
    display: none;
    background-color: #222;
    border-radius: 20px;
    padding: 10px;
    margin-top: 10px;
}
.aa-pfrmsec div { display: flex; flex-direction: row; width: 100%; justify-content: end; margin: 2px 0; }
label {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: silver;
    font-size: 16pt;
    text-align: right !important;
    white-space: nowrap;
    margin-right: 15px;
}
.pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 16pt;
    text-align: left !important;
    border-radius: 8px;
    min-width: 250px;
    max-width: 250px;
    background-color: white;
}
.spn-hdr { width: 100px; text-align: right; padding-right: 25px; float: left; }
.pzatyp { width: 100%; text-align: left; }
.pzatyp-input { width: 65px !important; text-align: center; }
.fa-asterisk { color: red; padding-right: 5px; font-size: 0.8em; }
.lnk-spi { color: #5efa20; font-weight: bold; cursor: pointer; }
.standout { font-style: italic; color: yellow; }
.page-title {
    font-size: 2rem;
    color: #9b30ff;
    border-bottom: 2px solid #9b30ff;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.section-title {
    font-size: 1.5rem;
    color: #00ff9c;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 2px #000;
}
.section { margin-bottom: 2.5rem; padding-left: 1.2rem; }
.hdr { color: #ffffff; text-align: left !important; font-size: 24pt; }

/* Event + SMS */
.webviewhdr {
    font-size: 1.5em;
    color: black;
    font-family: trebuchet, arial, sans-serif;
    cursor: pointer;
    background-color: #9204ff;
    width: 100%;
    text-align: center;
    border-radius: 3px;
}
#h3g { filter: drop-shadow(0 0 5px white); color: black; font-weight: bold; }
#ulg { color: white; }
.webviewcontainer {
    display: flex;
    gap: 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    border: 1px solid #666;
    border-radius: 5px;
    background-color: #444;
    min-height: 50px;
    min-width: 110px;
    max-width: 225px;
    padding: 6px;
    cursor: pointer;
}
.webviewcontainer:hover, .webviewselected { background-color: #111 !important; }
.evtcontainer { display: flex; flex-direction: column; gap: 30px; width: 100%; justify-content: center; }
.evthdr { color: #9204ff; font-weight: bold; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-size: 2em; }
.evtcontent { width: 100%; padding: 0 30px; color: silver; font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-size: 1em; }
.evt-header { width: 100%; display: flex; align-items: center; justify-content: center; flex-flow: row nowrap; }
.webview {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 120px;
    max-width: 180px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 7px;
    background-color: #222;
    min-height: 300px;
    padding: 6px;
    gap: 10px;
}
.wkcontainer { display: flex; flex-direction: row; flex-wrap: wrap; gap: 5px; }
.wkd { display: flex; flex-direction: column; border-radius: 4px; border: 1px solid #ccc; background-color: #ccc; }
.wkhdr { width: 100%; background-color: #009c20; color: #fff; font-weight: bold; font-size: 0.9em; border-radius: 4px; border: 1px solid #666; text-align: center; }
.wkdevt { color: black; background-color: #ccc; font-size: 0.8em; padding: 3px; }
.wkevtnm { color: #44007f; font-weight: bold; font-size: 0.9em !important; }
.evt { margin-top: 25px; border-top: 2px solid #333; padding-top: 20px; }

#smsphone2 { text-align: center; font-size: 1.2em; }
.smswebview {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    min-width: 200px;
    max-width: 200px;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #333;
    border-radius: 7px;
    padding: 6px;
    gap: 20px;
}
.smsenroll { display: flex; flex-flow: row wrap; align-items: center; justify-content: center; gap: 15px; width: 100%; }
.smstxt { display: flex; width: 180px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.smsalert { color: aqua; font-size: 1.1em; }
.smsphonecontainer { width: 100%; }
.sms-phone { border: 1px solid #999; border-radius: 5px !important; height: 30px; width: 200px !important; text-align: center !important; font-size: 1.1em !important; }
#smsphone:focus { background-color: #d6ffd6; }
.smsheading { width: 150px; text-align: center; color: silver; font-size: 0.8em; display: inline-block; vertical-align: middle; }
.smswanna {
    width: 25%;
    display: flex;
    flex-flow: column wrap;
    border: 1px solid white;
    border-radius: 7px;
    padding: 16px;
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 2000;
    transform: translate(-50%, 0);
    filter: drop-shadow(0 0 20px black);
    gap: 10px;
}
.swanna-hdr { width: 100%; color: lime; text-align: center; }
.smssub:not(:disabled):hover, .smscancel:hover { border: 1px solid white; border-radius: 7px; }
.smscancel { background-color: #f00; color: black; }
.sms-submit { background-color: #0f0 !important; color: black; }

/* Popup ad */
.pu-ad-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3000;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pu-add-img { width: 640px; height: auto; cursor: pointer; filter: drop-shadow(0 0 20px black); }
.pu-ad-close { position: absolute; font-size: 5em; color: red; left: 82%; top: 20px; }
.pu-ad-close:hover { color: white; cursor: pointer; }
.pu-clickformore, .pu-clickformore-inline {
    position: absolute;
    border: 1px solid #666;
    border-radius: 15px;
    background-color: #e7e7e7;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.pu-clickformore { width: 380px; height: 34px; font-size: 1.5em; bottom: 0; z-index: 9999; cursor: pointer; }
.pu-clickformore-inline { width: 280px; height: 24px; font-size: 1em; bottom: 0; z-index: 9999; }
.pu-clickformore a, .pu-clickformore-inline a { text-decoration: none; color: black; }
.pu-clickformore:hover, .pu-clickformore-inline:hover { background-color: yellow; }
.pu-ad-container-inline { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; }
.closeme { color: white; position: absolute; bottom: -45px; left: 50%; transform: translateX(-50%); font-weight: bold; font-size: 1.5em; }

/* Responsive */
@media only screen and (max-width: 600px) {
    .aa-alert-content { max-width: 100% !important; min-width: 100% !important; }
    .nw, .nw-mtg, .pu-add-img, .pu-clickformore-inline, .pu-ad-container-inline { width: 100% !important; min-width: 100% !important; }
}
@media only screen and (max-width: 890px) {
    .aa-alert-content { max-width: 100% !important; min-width: 100% !important; }
}
@media (max-width: 768px) {
    .page-title { font-size: 2rem; }
    .section-title { font-size: 1.4rem; }
}

/* ========== Migrated from inline <style> blocks (.cshtml) ========== */

/* Contact form: allow full-width fields inside bordered container */
.aa-contact-container input,
.aa-contact-container li {
    max-width: 100%;
}

/* Terms & privacy */
main.terms-privacy li,
main.terms-privacy p {
    color: silver;
    margin-top: 15px;
    list-style-type: none;
}
main.terms-privacy h6 {
    color: #51ff00;
    margin-bottom: -3px;
}
main.terms-privacy .lbul li {
    list-style-type: square;
    margin-top: unset;
}

/* GL Admin + POS login */
.gl-login-page {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
}
.gl-login-form {
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: gainsboro;
    width: 400px;
    padding: 30px;
    filter: drop-shadow(0 0 10px green);
}

/* Dashboard cache tools */
.gl-dash-btn {
    max-width: 220px;
    min-width: 200px;
    margin: 5px;
    border-radius: 7px;
    border: 1px solid #555;
}
.gl-dash-btn:hover {
    color: white;
    background-color: #7911a3;
    border-color: #999;
}
.gl-dash-sec {
    border: 1px solid #555;
    border-radius: 7px;
    padding: 10px;
    gap: 20px;
}

/* GL Admin layout (narrow sidebar .webview overrides public/event .webview) */
.gl-admin .danger { color: var(--aa-danger-color); }
.gl-admin .ok { color: var(--aa-ok-color); }
.gl-admin .warn { color: var(--aa-warning-color); }
.gl-admin .webview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 7px;
    background-color: #111;
    padding: 4px;
    gap: 5px;
    min-height: 0;
    min-width: unset;
    max-width: none;
}
.gl-admin .e-toast-container .e-toast .e-toast-message .e-toast-title {
    color: red;
    font-size: 14px;
    font-weight: bold;
}
.gl-admin .e-toast-container .e-toast {
    background-color: #6600e9;
}
.gl-admin .e-toast-container .e-toast .e-toast-icon {
    color: yellow;
}
.gl-admin .session {
    margin-top: 20px;
    font-size: 0.8em;
    width: 100%;
    text-align: right;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
.gl-admin .ftr {
    background-color: #1b0027;
    padding: 3px 15px;
    width: 100%;
    margin-top: 40px;
}
.gl-admin .cr {
    color: #d3ffb3;
    font-size: 0.8em;
    width: 100%;
    text-align: left;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
.gl-admin .nav-link {
    font-size: var(--aa-nav-link-font-size);
    font-weight: var(--aa-nav-link-font-weight);
    color: silver;
    text-decoration: none;
}
.gl-admin .nav-link:hover {
    color: limegreen;
}
.gl-admin .username {
    font-size: 20pt;
    color: silver;
}
.gl-admin .nav-link-bordered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px;
    font-size: 0.7em;
    font-weight: normal;
    color: silver;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    border: 1px solid #555;
    width: 110px;
    min-height: 15px;
    max-height: 50px;
    border-radius: 6px;
    background-color: #202020;
}
.gl-admin .dashlink {
    height: 25px;
    border-radius: 4px;
}
.gl-admin .nav-link-bordered:hover {
    background-color: #111;
}
.gl-admin .nav-link-selected {
    background-color: #63c;
    color: silver;
}
.gl-admin .sm-txt {
    font-size: 0.8em;
}

/* GL Admin: Syncfusion grids & manager layout (shared) */
.gl-admin .edit-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
}
.gl-admin .e-grid {
    border: 1px solid #ccc;
    border-radius: 10px;
}
.gl-admin .e-gridheader {
    border: 1px solid #ccc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.gl-admin .e-gridpager {
    border: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.gl-admin .e-grid .e-row:hover .e-rowcell {
    background-color: rgb(204, 229, 255) !important;
    cursor: pointer;
}
.gl-admin .e-grid .e-row.e-altrow {
    background-color: #a0a0a0;
}
.gl-admin .e-grid .e-row {
    background-color: #ccc;
}
.gl-admin h2 {
    color: mediumaquamarine;
}
.gl-admin h2.clr-silver {
    color: silver;
}
.gl-admin .e-dialog {
    width: 800px !important;
    max-width: 90vw;
}
.gl-admin .gl-grid-compact .e-grid .e-row:hover .e-rowcell {
    background-color: rgb(204, 229, 255) !important;
    cursor: pointer;
}
.gl-admin .gl-grid-compact .e-grid .e-row .e-altrow {
    background-color: #a0a0a0;
}
.gl-admin .gl-grid-compact .e-grid .e-row {
    height: 15px;
}
.gl-admin .gl-grid-compact .e-grid .e-rowcell {
    line-height: 15px;
    white-space: nowrap;
}
.gl-admin .gl-grid-compact .e-grid .e-headercelldiv {
    height: 15px;
    line-height: 15px;
}
.gl-admin .gl-grid-compact .e-row {
    height: 15px !important;
}
.gl-admin .gl-grid-compact .e-headertext,
.gl-admin .gl-grid-compact .e-rowcell {
    font-size: 0.8em !important;
}
.gl-admin .f {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}
.gl-admin .f.gl-f-col {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.gl-admin .event-details,
.gl-admin .campaign-details,
.gl-admin .template-details,
.gl-admin .msg-details {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #333;
    color: silver;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
}

/* Subscriber Manager – opt-in panel */
.gl-admin .divbox {
    background-color: #333;
    border: 1px solid #ccc;
}
.gl-admin .enroll-wrapper {
    width: 100%;
    min-height: 150px;
    border-radius: 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}
.gl-admin .enroll-title {
    color: silver;
    font-size: 1.3em;
    text-align: center;
}
.gl-admin .enroll-item-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 5px;
    padding: 5px;
}
.gl-admin .enroll-item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    color: silver;
}
.gl-admin .enroll-item input {
    border-radius: 5px;
}
.gl-admin .enroll-btn {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
.gl-admin #diveditor {
    display: none;
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    z-index: 3000;
    transform: translate(-50%, -50%);
    background-color: #333;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 25px #521073;
}
.gl-admin .divedhdr {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}
.gl-admin .dived {
    width: 100%;
    height: 100%;
}
.gl-admin .divedtitle {
    color: silver;
}
.gl-admin .e-rte-content {
    height: 800px;
}
.gl-admin #rteditor {
    background-color: #fff;
}

/* GL Admin Card Manager – extra form/grid helpers */
.gl-admin .pfrm-dta {
    font-size: 12pt;
    min-width: 400px;
    max-width: none;
}
.gl-admin .pfrm-dta2 {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    min-width: 300px;
    background-color: white;
}
.gl-admin #CCGUID,
.gl-admin #CCGSeriesUID {
    width: 250px !important;
    font-size: 1em;
}
.gl-admin #imgdrop {
    border-style: dashed !important;
    height: 210px;
    width: 200px;
}
.gl-admin #imgdrop.hover {
    border-color: #aaa;
    background-color: #ddd;
}
.gl-admin #imgdrop.error {
    border-color: #f00;
    background-color: #faa;
}
.gl-admin .cardimg {
    height: 200px;
    width: auto;
}
.gl-admin .disabled-div {
    pointer-events: none;
    user-select: none;
    cursor: not-allowed;
    opacity: 0.5;
}
.gl-admin .aa-btn.gl-cardmgr-btn {
    width: 120px !important;
}
.gl-admin .carddiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #333;
    color: silver;
    padding: 5px;
    filter: drop-shadow(0 0 20px black);
}
.gl-admin .modal--active {
    -webkit-filter: blur(3px);
    filter: blur(5px);
    opacity: 0.5;
}
.gl-admin .img-prvw {
    height: 75px;
    width: auto;
}
.gl-admin .tile-container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    gap: 15px;
    justify-content: start;
    align-items: center;
    margin: 10px;
}
.gl-admin .tile {
    border: 1px solid #444;
    border-radius: 10px;
    background-color: white;
    min-width: 150px;
    max-width: 150px;
    max-height: 70px;
    min-height: 70px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.gl-admin .tile-sel {
    background-color: #744dc3;
}
.gl-admin .tile img {
    max-width: 80%;
    height: auto;
}

/* Public card inventory (Merch) – shared tile grid with admin card picker */
main.gl-card-inventory .tle {
    color: #cb89ff;
    font-size: 1.2em;
    width: 100%;
}
main.gl-card-inventory .tlesm {
    color: #888;
    font-size: 0.7em;
    width: 100%;
}
main.gl-card-inventory .card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}
main.gl-card-inventory .card-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
}
main.gl-card-inventory .cardview {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
main.gl-card-inventory .card {
    display: flex;
    flex-flow: column nowrap;
    border: 1px solid #4b4b4b;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
    justify-content: start;
    align-items: center;
    min-width: 202px;
    max-width: 202px;
}
main.gl-card-inventory .card img {
    max-width: 180px;
    height: auto;
}
main.gl-card-inventory .card-series {
    color: #8600ca;
    font-size: 1vw !important;
    text-align: center;
}
main.gl-card-inventory .card-name {
    color: #1a8300;
    font-weight: bold;
    font-size: 1vw !important;
    text-align: center;
}
main.gl-card-inventory .card-oth {
    color: black;
    font-size: 1vw !important;
    text-align: center;
}
main.gl-card-inventory .tile-container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
main.gl-card-inventory .tile {
    border: 1px solid #444;
    border-radius: 10px;
    background-color: white;
    min-width: 150px;
    max-width: 150px;
    max-height: 70px;
    min-height: 70px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
main.gl-card-inventory .tile-sel {
    background-color: #744dc3;
}
main.gl-card-inventory .tile img {
    max-width: 80%;
    height: auto;
}
main.gl-card-inventory .instructions {
    color: #ccc;
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}
main.gl-card-inventory .thefinger {
    color: yellow;
    font-size: 1.2em;
}
main.gl-card-inventory .searchbox {
    font-size: 1em;
    width: 300px;
    border: 1px solid #444;
    border-radius: 10px;
    background-color: white;
}
main.gl-card-inventory select {
    max-height: 280px;
    overflow-y: auto;
}
main.gl-card-inventory .searchbox.disabled {
    background-color: #999;
    color: #666;
}
main.gl-card-inventory .search-wrapper {
    margin-top: 20px;
}

/* Alert / event detail partials (admin) */
.alertdtl-wrapper .aa-pfrmsec,
.eventdtl-wrapper .aa-pfrmsec {
    display: flex;
    flex-direction: column;
    min-width: 40%;
    flex-wrap: nowrap;
    gap: 10px;
}
.alertdtl-wrapper .pfrm-dta,
.eventdtl-wrapper .pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    max-width: 100%;
    background-color: white;
}
.alertdtl-wrapper .pfrm-lbl,
.eventdtl-wrapper .pfrm-lbl {
    min-width: 120px;
    text-align: right;
    padding-right: 5px;
}
.alertdtl-wrapper .rw,
.eventdtl-wrapper .rw {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin-bottom: 5px;
}
.alertdtl-wrapper input[type="checkbox"],
.eventdtl-wrapper input[type="checkbox"] {
    cursor: pointer;
}
.alertdtl-wrapper .theme-editor {
    position: absolute;
    top: 20%;
    left: 40%;
}

.gl-admin .campaigndtl-wrap .aa-pfrmsec {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    flex-wrap: nowrap;
}
.gl-admin .campaigndtl-wrap .pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    max-width: 100%;
    background-color: white;
}
.gl-admin .campaigndtl-wrap .pfrm-lbl {
    min-width: 120px;
    max-width: 160px;
    text-align: right;
    padding-right: 5px;
    color: silver;
}
.gl-admin .campaigndtl-wrap .rw {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin-bottom: 5px;
}
.gl-admin .campaigndtl-wrap input[type="checkbox"] {
    cursor: pointer;
}

.gl-admin .templatedtl-wrap .aa-pfrmsec {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    flex-wrap: nowrap;
}
.gl-admin .templatedtl-wrap .pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    width: 100%;
    background-color: white;
}
.gl-admin .templatedtl-wrap .pfrm-lbl,
.gl-admin .templatedtl-wrap #SMSMessageTemplateID {
    min-width: 120px;
    text-align: right;
    padding-right: 5px;
    color: silver;
}
.gl-admin .templatedtl-wrap .rw {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin-bottom: 5px;
}
.gl-admin .templatedtl-wrap .rw > textarea {
    min-width: 80%;
    word-wrap: break-word;
    height: 100px;
    box-sizing: border-box;
    cursor: pointer;
    overflow-wrap: break-word;
    text-wrap: wrap;
}
.gl-admin .templatedtl-wrap input[type="checkbox"] {
    cursor: pointer;
}

.gl-admin .messagedtl-wrap .aa-pfrmsec {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    min-width: 40%;
    flex-wrap: nowrap;
    background-color: #333;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 6px;
    color: silver;
    width: 800px;
}
.gl-admin .messagedtl-wrap .pfm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    max-width: 100%;
    color: lime;
}
.gl-admin .messagedtl-wrap .pfrm-sel {
    width: 100px;
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    font-size: 12pt;
}
.gl-admin .messagedtl-wrap .pfrm-lbl {
    min-width: 120px;
    text-align: right;
    padding-right: 5px;
}
.gl-admin .messagedtl-wrap .msg {
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 7px;
    width: 100%;
    padding: 10px;
    white-space: pre-wrap;
}

/* Hidden Champion public page */
.hc-page .lili {
    height: 150px;
    width: auto;
}
.hc-page .hc-title {
    display: flex;
    flex-flow: row nowrap;
    color: #ffc905;
    font-size: 2em;
}
.hc-page .hc-title span {
    white-space: nowrap;
}
.hc-page .hc-d0 {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: center;
    align-items: start;
}
.hc-page .hc-d1 {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 800px;
}
.hc-page .hc-d1 img {
    width: 150px;
    height: auto;
}
.hc-page .hc-d2 {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    width: 70%;
    justify-content: start;
    align-items: center;
}
main.hc-page {
    color: silver;
}
main.hc-page ul li {
    list-style: none;
}
.hc-page .hcbrd-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}
.hc-page .hcbrd-wrapper {
    padding: 10px;
}
.hc-page .row .col img {
    max-width: 90px;
    height: auto;
}
.hc-page .hc-ld {
    text-align: center;
    font-size: 1.2em;
    margin: 5px;
}

/* Memberships: Square embed card */
.gl-membership-offer-wrap {
    margin-bottom: 30px;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}
.gl-membership-offer-card {
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 259px;
    background: #444;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -2px 10px 5px rgba(0, 0, 0, 0);
    border-radius: 10px;
    font-family: "SQ Market", "SQ Market", Helvetica, Arial, sans-serif;
}
.gl-membership-offer-card-inner {
    padding: 20px;
}
.gl-membership-offer-title {
    font-size: 18px;
    line-height: 20px;
    color: silver;
}
.gl-membership-offer-price {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #0fff05;
}
.gl-membership-buy-btn {
    display: inline-block;
    font-size: 18px;
    line-height: 48px;
    height: 48px;
    color: #ffffff;
    min-width: 140px;
    background-color: #8716d9;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
    border-radius: 50px;
}

/* GL Admin – Inventory Manager (dense dark grids) */
.gl-admin .gl-inv-page h2 {
    color: #7e53ff;
}
.gl-admin .gl-inv-page .e-grid {
    border: 1px solid #444;
    border-radius: 10px;
    margin: 4px;
    background-color: #222;
}
.gl-admin .gl-inv-page .e-gridheader {
    background-color: #222;
    color: silver;
    max-height: 30px;
    margin: 0;
    padding: 0;
}
.gl-admin .gl-inv-page .e-columnheader {
    max-height: 25px;
    margin: 0;
    padding: 0;
}
.gl-admin .gl-inv-page .e-headercell {
    background-color: #222;
    color: silver;
    max-height: 25px;
    margin: 0;
    padding: 0;
}
.gl-admin .gl-inv-page .e-headercelldiv {
    background-color: #222;
    color: silver;
    max-height: 25px;
    margin: 0;
    padding: 0;
}
.gl-admin .gl-inv-page .e-gridpager {
    border: 1px solid #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.gl-admin .gl-inv-page .e-grid .e-row:hover .e-rowcell {
    background-color: rgb(204, 229, 255) !important;
    cursor: pointer;
}
.gl-admin .gl-inv-page .e-grid .e-row .e-altrow {
    background-color: #a0a0a0;
}
.gl-admin .gl-inv-page .e-grid .e-row {
    height: 15px;
}
.gl-admin .gl-inv-page .e-grid .e-rowcell {
    line-height: 15px;
    white-space: nowrap;
}
.gl-admin .gl-inv-page .e-grid .e-headercelldiv {
    height: 15px;
    line-height: 15px;
}
.gl-admin .gl-inv-page .e-row {
    height: 15px !important;
}
.gl-admin .gl-inv-page .e-headertext,
.gl-admin .gl-inv-page .e-rowcell {
    font-size: 0.8em !important;
}
.gl-admin .gl-inv-page .e-toolbar-items {
    background-color: #444 !important;
}
.gl-admin .gl-inv-page .e-icons {
    color: silver !important;
}
.gl-admin .gl-inv-page .e-tbar-btn-text {
    color: silver !important;
}
.gl-admin .gl-inv-page .e-toolbar .e-btn {
    font-size: 0.9em;
    height: 15px !important;
}
.gl-admin .gl-inv-page .e-grid .e-toolbar {
    max-height: 15px;
    padding: 2px 8px;
}
.gl-admin .gl-inv-page .e-grid .e-toolbar .e-toolbar-items .e-tbar-btn {
    height: 15px;
    padding: 0 6px;
    font-size: 0.9em;
}
.gl-admin .gl-inv-page .e-grid .e-toolbar .e-toolbar-items .e-tbar-btn .e-btn-icon {
    height: 20px;
    font-size: 0.9em;
}
.gl-admin .gl-inv-page .e-grid .e-toolbar .e-input-group {
    height: 20px;
    font-size: 0.9em;
}
.gl-admin .gl-inv-page .e-pager,
.gl-admin .gl-inv-page .e-pagercontainer,
.gl-admin .gl-inv-page .e-parentmsgbar {
    font-size: 0.9em;
    max-height: 30px;
    background-color: #444;
}
.gl-admin .gl-inv-page .divedhdr {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    color: lime;
    overflow: clip;
    font-size: 0.9em;
}
/* Send single MMS (admin) */
.gl-admin .gl-mms-send .grdcontainer {
    display: grid;
    grid-template-columns: 200px 500px;
    max-width: 710px;
    min-width: 710px;
    align-items: start;
}
.gl-admin .gl-mms-send #Message {
    max-width: 100%;
    min-width: 100%;
    height: 300px;
    font-size: 1.2em;
}
.gl-admin .gl-mms-send .grdlbl {
    padding: 10px;
    font-size: 1.2em;
    text-align: right;
}
.gl-admin .gl-mms-send .grddta {
    padding: 10px;
}
.gl-admin .gl-mms-send .pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    max-width: 100%;
    min-width: 100%;
    background-color: white;
}
.gl-admin .gl-mms-send h2 {
    color: limegreen;
}
.gl-admin .gl-mms-send .cntr {
    height: 12px;
    color: silver;
    font-size: 0.7em;
    text-align: right;
    padding-right: 20px;
    margin-top: -10px;
    margin-bottom: 10px;
    align-items: baseline;
}
.gl-admin .gl-mms-send .sbmt,
.gl-admin .gl-mms-send .clrfrm {
    width: 100px;
    height: 30px;
}
.gl-admin .gl-mms-send .sbmt:hover {
    background-color: #111;
    color: yellow;
}
.gl-admin .gl-mms-send .disabled {
    color: #666;
    background-color: #aaa;
}

/* SQL builder (admin sq) */
.gl-admin .gl-sq-page h2 {
    color: silver;
}
.gl-admin .gl-sq-page #dynTable {
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
}
.gl-admin .gl-sq-page #dynTable thead th {
    background-color: #3c3c3c;
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 8px;
    border-bottom: 2px solid #666;
}
.gl-admin .gl-sq-page #dynTable thead th:hover {
    background-color: #555;
    cursor: pointer;
}
.gl-admin .gl-sq-page #dynTable tbody td {
    font-size: 13px;
    padding: 6px 8px;
    border-bottom: 1px solid #ddd;
}
.gl-admin .gl-sq-page #dynTable tbody tr:hover {
    background-color: #f9f9f9;
}
.gl-admin .gl-sq-page #dynTable tbody tr:nth-child(even) {
    background-color: #b7b7b7;
}
.gl-admin .gl-sq-page #dynTable tbody tr:nth-child(odd) {
    background-color: #797979;
}
.gl-admin .gl-sq-page div.dataTables_wrapper div.dataTables_paginate,
.gl-admin .gl-sq-page div.dataTables_wrapper div.dataTables_filter,
.gl-admin .gl-sq-page div.dataTables_wrapper div.dataTables_length {
    font-size: 13px;
}
.gl-admin .gl-sq-page .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #3c3c3c !important;
    color: white !important;
    border: none !important;
}
.gl-admin .gl-sq-page .sql-txt {
    width: unset;
    height: unset;
    max-width: unset;
    max-height: unset;
    min-width: unset;
    min-height: unset;
}
.gl-admin .gl-sq-page .d-sql {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
}
.gl-admin .gl-sq-page .lb {
    width: 25%;
    height: 150px;
    background-color: #ddd;
    color: black;
}
.gl-admin .gl-sq-page .instr {
    font-size: 0.9em;
    color: silver;
}
.gl-admin .gl-sq-page #errormsg {
    font-size: 0.8em;
    margin: 10px;
    color: red;
}

/* Upload images (admin) */
.gl-admin .gl-upload-f h2 {
    color: mediumaquamarine;
}
.gl-admin .gl-upload-f p,
.gl-admin .gl-upload-f div {
    color: silver;
}
.gl-admin .gl-upload-f .vird {
    cursor: pointer;
}
.gl-admin .gl-upload-f .imggal {
    margin: 10px;
}
.gl-admin .gl-upload-f .img-gal-fn {
    font-size: 0.8em;
    word-wrap: anywhere;
    text-wrap-mode: wrap;
    width: 100%;
    text-align: center;
}
.gl-admin .gl-upload-f .img-gal-div {
    max-width: 210px;
    min-width: 210px;
    padding: 4px;
    border: 1px solid #333;
    background-color: #111;
    border-radius: 5px;
}
.gl-admin .gl-upload-f .imgpath {
    padding: 4px;
    text-align: left;
    font-size: 1.1em;
    color: #d8b900;
    font-weight: bold;
}

.gl-admin .manager-instructions {
    color: #777;
    font-size: 0.9em;
    font-style: italic;
}

/* Event carousel partial – scoped so global * reset does not leak */
.gl-event-carousel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.gl-event-carousel slmain {
    position: relative;
    width: calc(min(90rem, 90%));
    margin: 0 auto;
    min-height: 100vh;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
}
.gl-event-carousel .bg {
    position: fixed;
    top: -4rem;
    left: -12rem;
    z-index: -1;
    opacity: 0;
}
.gl-event-carousel .bg2 {
    position: fixed;
    bottom: -2rem;
    right: -3rem;
    z-index: -1;
    width: 9.375rem;
    opacity: 0;
}
.gl-event-carousel slmain > div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}
.gl-event-carousel slmain > div h1 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
    background-color: #005baa;
    background-image: linear-gradient(45deg, #005baa, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.gl-event-carousel slmain > div hr {
    display: block;
    background: #005baa;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
}
.gl-event-carousel slmain > div p {
    line-height: 1.6;
}
.gl-event-carousel slmain a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #717171;
    font-weight: 500;
    background: #fff;
    border-radius: 3.125rem;
    transition: 0.3s ease-in-out;
}
.gl-event-carousel slmain > div > a {
    border: 2px solid #c2c2c2;
    margin-top: 2.188rem;
    padding: 0.625rem 1.875rem;
}
.gl-event-carousel slmain > div > a:hover {
    border: 0.125rem solid #005baa;
    color: #005baa;
}
.gl-event-carousel .swiper {
    width: 100%;
    padding-top: 3.125rem;
}
.gl-event-carousel .swiper-pagination-bullet,
.gl-event-carousel .swiper-pagination-bullet-active {
    background: #fff;
}
.gl-event-carousel .swiper-pagination {
    bottom: 1.25rem !important;
}
.gl-event-carousel .swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}
.gl-event-carousel .swiper-slide h2 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    padding: 0 0 0 1.563rem;
    text-transform: uppercase;
}
.gl-event-carousel .swiper-slide p {
    color: #dadada;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding: 0 1.563rem;
    line-height: 1.6;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gl-event-carousel .swiper-slide a {
    margin: 1.25rem 1.563rem 3.438rem 1.563rem;
    padding: 0.438em 1.875rem;
    font-size: 0.9rem;
}
.gl-event-carousel .swiper-slide a:hover {
    color: #005baa;
}
.gl-event-carousel .swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 0.625rem;
}
.gl-event-carousel .swiper-slide-active div {
    display: block;
    opacity: 1;
}
.gl-event-carousel .swiper-3d .swiper-slide-shadow-left,
.gl-event-carousel .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

.gl-admin .visualthemedtl-wrap.aa-pfrmcontainer {
    padding: 20px;
    border: 2px solid #666;
}
.gl-admin .visualthemedtl-wrap .aa-pfrmsec {
    gap: 5px;
}
.gl-admin .visualthemedtl-wrap .pfrm-dta {
    font-family: "Farsan", Calibri, "Trebuchet MS", sans-serif, cursive;
    color: black;
    font-size: 12pt;
    text-align: left !important;
    padding-right: 6px;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 8px;
    max-width: 100%;
    background-color: white;
}
.gl-admin .visualthemedtl-wrap .pfrm-sel {
    width: 50%;
}
.gl-admin .visualthemedtl-wrap .pfrm-lbl {
    min-width: 140px;
    text-align: right;
    padding-right: 5px;
}
.gl-admin .visualthemedtl-wrap .rw {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    margin-bottom: 5px;
}
.gl-admin .visualthemedtl-wrap input[type="checkbox"] {
    cursor: pointer;
}
.gl-admin .visualthemedtl-wrap .th-ex-icon {
    padding-right: 15px;
}
.gl-admin .visualthemedtl-wrap .fdd {
    margin-left: 10px;
    width: 100%;
    height: 16px;
    font-size: 0.8em;
    background-color: #111;
    color: silver;
}
.gl-admin .visualthemedtl-wrap .thsel {
    font-weight: bold;
}

/* Syncfusion DB carousel partial (backup view) */
.db-carousel-section .carousel-sample {
    border: 1px solid #e5e5e5;
    border-radius: 0.5em;
    margin: 0 auto 2em;
    max-width: 648px;
    height: 420px;
}
.db-carousel {
    background-color: inherit;
    border-radius: 0.5em;
}
.db-carousel .e-carousel-items .e-carousel-item .card-title,
.db-carousel .e-carousel-items .e-carousel-item .card-text {
    opacity: 0;
    text-align: justify;
    transform: translateY(20px);
}
.db-carousel .e-carousel-items .e-carousel-item.e-active .card-title,
.db-carousel .e-carousel-items .e-carousel-item.e-active .card-text {
    opacity: 1;
    transform: translateY(0px);
}
.db-carousel .e-carousel-items .e-carousel-item .card-title {
    font-size: 20px;
    transition: transform 0.4s ease 0.2s;
}
.db-carousel .e-carousel-items .e-carousel-item .card-text {
    font-size: 14px;
    transition: transform 0.4s ease 0.2s;
}
.db-carousel .e-carousel-indicators {
    height: 3em;
}
.db-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator div {
    background-color: #e7e7e7;
}
@media screen and (max-width: 480px) {
    .db-carousel-section .carousel-sample {
        width: 100%;
        height: 440px;
    }
}
