 /* ============================================================
       GUEST LIST PAGE — prefix: gls-
    ============================================================ */
 .gls-wrap {
     max-width: 1200px;
     margin: 0 auto;
     padding: 28px 16px 64px;
     color: var(--text, #231805);
     margin: 80px auto;
 }

 /* ── Top Bar ── */
 .gls-topbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 12px;
     margin-bottom: 22px;
 }

 .gls-heading h1 {
     font-family: 'Syne', sans-serif;
     font-size: 1.55rem;
     font-weight: 800;
     color: var(--text, #231805);
     letter-spacing: -0.5px;
     margin: 0;
 }

 .gls-heading p {
     font-size: 0.8rem;
     color: var(--dark-gray, #555);
     margin: 4px 0 0;
 }

 .gls-add-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--primary, #e3982d);
     color: #fff;
     border: none;
     padding: 10px 20px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.85rem;
     font-weight: 700;
     border-radius: 10px;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     text-decoration: none;
     transition: all 0.25s ease;
     box-shadow: 0 4px 14px rgba(227, 152, 45, 0.35);
     white-space: nowrap;
 }

 .gls-add-btn:hover {
     background: var(--secondary, #007968);
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(0, 121, 104, 0.3);
     color: #fff;
 }

 /* ── Bulk Action Bar (shown when rows selected) ── */
 .gls-bulk-bar {
     display: none;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
     background: linear-gradient(135deg, rgba(227, 152, 45, 0.1), rgba(0, 121, 104, 0.07));
     border: 1.5px solid rgba(227, 152, 45, 0.28);
     border-radius: 12px;
     padding: 12px 16px;
     margin-bottom: 14px;
     backdrop-filter: blur(8px);
     animation: glsSlideDown 0.22s ease;
 }

 .gls-bulk-bar.show {
     display: flex;
 }

 @keyframes glsSlideDown {
     from {
         opacity: 0;
         transform: translateY(-8px);
     }

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

 .gls-bulk-info {
     font-family: 'Syne', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--primary, #e3982d);
     white-space: nowrap;
 }

 .gls-bulk-info span {
     color: var(--text, #231805);
 }

 .gls-bulk-sep {
     width: 1px;
     height: 22px;
     background: rgba(227, 152, 45, 0.25);
     flex-shrink: 0;
 }

 .gls-bulk-label {
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.6px;
     color: var(--dark-gray, #555);
     white-space: nowrap;
 }

 /* Bulk allowed input */
 .gls-bulk-allowed-wrap {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .gls-bulk-input {
     width: 64px;
     padding: 6px 8px;
     border: 1.5px solid rgba(227, 152, 45, 0.35);
     border-radius: 7px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--text, #231805);
     background: #fff;
     outline: none;
     text-align: center;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
 }

 .gls-bulk-input:focus {
     border-color: var(--primary, #e3982d);
     box-shadow: 0 0 0 3px rgba(227, 152, 45, 0.12);
 }

 /* Bulk mini toggle */
 .gls-bulk-tog-wrap {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .gls-mini-switch {
     position: relative;
     width: 34px;
     height: 17px;
     background: var(--chinese-silver, #ccc);
     border-radius: 9px;
     cursor: pointer;
     border: none;
     transition: background 0.22s ease;
     flex-shrink: 0;
 }

 .gls-mini-switch::after {
     content: '';
     position: absolute;
     width: 13px;
     height: 13px;
     background: #fff;
     border-radius: 50%;
     top: 2px;
     left: 2px;
     transition: transform 0.22s ease;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
 }

 .gls-mini-switch.on {
     background: var(--primary, #e3982d);
 }

 .gls-mini-switch.on::after {
     transform: translateX(17px);
 }

 .gls-mini-switch.on-g {
     background: var(--middle-green, #478d4e);
 }

 .gls-mini-switch.on-g::after {
     transform: translateX(17px);
 }

 .gls-bulk-btn {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 7px 14px;
     border-radius: 7px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     cursor: pointer;
     border: none;
     transition: all 0.2s ease;
     white-space: nowrap;
 }

 .gls-bulk-btn.save {
     background: var(--primary, #e3982d);
     color: #fff;
     box-shadow: 0 3px 10px rgba(227, 152, 45, 0.3);
 }

 .gls-bulk-btn.save:hover {
     background: var(--secondary, #007968);
 }

 .gls-bulk-btn.desel {
     background: transparent;
     color: var(--dark-gray, #555);
     border: 1.5px solid var(--gray-80, #ddd);
 }

 .gls-bulk-btn.desel:hover {
     border-color: var(--red, #f00);
     color: var(--red, #f00);
 }

 .gls-bulk-btn svg {
     width: 11px;
     height: 11px;
     flex-shrink: 0;
 }

 /* ── Main Card ── */
 .gls-card {
     background: rgba(255, 255, 255, 0.93);
     backdrop-filter: blur(12px);
     border-radius: 16px;
     box-shadow: 0 4px 28px rgba(35, 24, 5, 0.07);
     border: 1px solid rgba(227, 152, 45, 0.13);
     overflow: hidden;
 }

 .gls-card-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 13px 18px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.1);
     flex-wrap: wrap;
     gap: 8px;
 }

 .gls-card-title {
     font-family: 'Syne', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.3px;
     color: var(--primary, #e3982d);
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .gls-card-title svg {
     width: 13px;
     height: 13px;
 }

 .gls-count-badge {
     font-size: 0.7rem;
     font-weight: 700;
     background: rgba(227, 152, 45, 0.1);
     color: var(--primary, #e3982d);
     padding: 3px 10px;
     border-radius: 20px;
     border: 1px solid rgba(227, 152, 45, 0.22);
 }

 /* ── Table ── */
 .gls-table-scroll {
     overflow-x: auto;
 }

 .gls-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.83rem;
 }

 .gls-table thead tr {
     background: rgba(227, 152, 45, 0.05);
     border-bottom: 1.5px solid rgba(227, 152, 45, 0.12);
 }

 .gls-table thead th {
     padding: 10px 12px;
     text-align: left;
     font-family: 'Syne', sans-serif;
     font-size: 0.64rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--dark-slate-gray, #2f4858);
     white-space: nowrap;
 }

 .gls-table thead th.gls-tc {
     text-align: center;
 }

 .gls-table thead th.gls-chk {
     width: 42px;
     text-align: center;
     padding: 10px 6px 10px 14px;
 }

 .gls-table tbody tr {
     border-bottom: 1px solid rgba(227, 152, 45, 0.07);
     transition: background 0.15s ease;
 }

 .gls-table tbody tr:last-child {
     border-bottom: none;
 }

 .gls-table tbody tr:hover {
     background: rgba(227, 152, 45, 0.03);
 }

 .gls-table tbody tr.selected {
     background: rgba(227, 152, 45, 0.07) !important;
 }

 .gls-table td {
     padding: 10px 12px;
     vertical-align: middle;
 }

 .gls-table td.gls-tc {
     text-align: center;
 }

 .gls-table td.gls-chk {
     padding: 10px 6px 10px 14px;
     text-align: center;
 }

 /* Checkbox */
 .gls-checkbox {
     width: 16px;
     height: 16px;
     cursor: pointer;
     accent-color: var(--primary, #e3982d);
 }

 /* Name cell */
 .gls-name-val {
     font-weight: 700;
     font-size: 0.86rem;
     color: var(--text, #231805);
 }

 /* Inline editable input */
 .gls-inline-input {
     width: 100%;
     min-width: 140px;
     padding: 6px 9px;
     border: 1.5px solid var(--gray-80, #ddd);
     border-radius: 7px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.8rem;
     color: var(--text, #231805);
     background: #fff;
     outline: none;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
     box-sizing: border-box;
 }

 .gls-inline-input:focus {
     border-color: var(--primary, #e3982d);
     box-shadow: 0 0 0 3px rgba(227, 152, 45, 0.1);
 }

 .gls-inline-input.phone {
     min-width: 120px;
 }

 .gls-inline-input.allowed {
     width: 60px;
     min-width: unset;
     text-align: center;
     font-weight: 700;
 }

 /* Row save button */
 .gls-row-save {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     padding: 5px 11px;
     background: var(--primary, #e3982d);
     color: #fff;
     border: none;
     border-radius: 6px;
     font-size: 0.68rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.3px;
     cursor: pointer;
     transition: all 0.2s ease;
     white-space: nowrap;
     font-family: 'DM Sans', sans-serif;
 }

 .gls-row-save:hover {
     background: var(--secondary, #007968);
     transform: translateY(-1px);
 }

 .gls-row-save svg {
     width: 10px;
     height: 10px;
     flex-shrink: 0;
 }

 /* Row toggle */
 .gls-row-switch {
     position: relative;
     width: 32px;
     height: 16px;
     background: var(--chinese-silver, #ccc);
     border-radius: 8px;
     cursor: pointer;
     border: none;
     transition: background 0.22s ease;
     display: inline-block;
     flex-shrink: 0;
 }

 .gls-row-switch::after {
     content: '';
     position: absolute;
     width: 12px;
     height: 12px;
     background: #fff;
     border-radius: 50%;
     top: 2px;
     left: 2px;
     transition: transform 0.22s ease;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
 }

 .gls-row-switch.on {
     background: var(--primary, #e3982d);
 }

 .gls-row-switch.on::after {
     transform: translateX(16px);
 }

 .gls-row-switch.on-g {
     background: var(--middle-green, #478d4e);
 }

 .gls-row-switch.on-g::after {
     transform: translateX(16px);
 }

 .gls-tog-cell {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 3px;
 }

 .gls-tog-lbl {
     font-size: 0.58rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-gray, #555);
 }

 /* ── Mobile Cards ── */
 .gls-mob-list {
     display: none;
 }

 .gls-mob-card {
     padding: 14px 16px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.08);
     transition: background 0.15s ease;
     position: relative;
 }

 .gls-mob-card:last-child {
     border-bottom: none;
 }

 .gls-mob-card.selected {
     background: rgba(227, 152, 45, 0.06);
 }

 .gls-mob-top {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .gls-mob-name {
     font-weight: 700;
     font-size: 0.88rem;
     color: var(--text, #231805);
     flex: 1;
 }

 .gls-mob-fields {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 8px;
     margin-bottom: 10px;
 }

 .gls-mob-field {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .gls-mob-field label {
     font-size: 0.62rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.6px;
     color: var(--dark-slate-gray, #2f4858);
 }

 .gls-mob-foot {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     flex-wrap: wrap;
     padding-top: 10px;
     border-top: 1px solid rgba(227, 152, 45, 0.08);
 }

 .gls-mob-toggles {
     display: flex;
     gap: 14px;
     align-items: center;
 }

 .gls-mob-tog-item {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .gls-mob-tog-lbl {
     font-size: 0.65rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-gray, #555);
 }

 /* ── Select All Bar in card header ── */
 .gls-sel-all-wrap {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .gls-sel-all-lbl {
     font-size: 0.72rem;
     font-weight: 600;
     color: var(--dark-gray, #555);
     cursor: pointer;
     user-select: none;
 }

 /* ── Responsive ── */
 @media (max-width: 860px) {
     .gls-table-scroll {
         display: none;
     }

     .gls-mob-list {
         display: block;
     }
 }

 @media (max-width: 480px) {
     .gls-wrap {
         padding: 16px 10px 50px;
     }

     .gls-heading h1 {
         font-size: 1.3rem;
     }

     .gls-add-btn {
         padding: 9px 14px;
         font-size: 0.78rem;
     }

     .gls-mob-fields {
         grid-template-columns: 1fr;
     }

     .gls-bulk-bar {
         gap: 8px;
     }

     .gls-bulk-sep {
         display: none;
     }
 }
