/* ============================================================
   1AT Taxi Booking Plugin – Frontend CSS v1.0.0
   Matches screenshots: hero widget, vehicle page, booking form
============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset for plugin elements ── */
.at1-page,.at1-hero-widget,.at1-veh-page,.at1-book-page,
.at1-page *,.at1-hero-widget *{box-sizing:border-box;}
.at1-page{font-family:'Inter',system-ui,sans-serif;margin:0;padding:0;background:#F4F6F8;color:#2d3748;}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.at1-header{background:#0D2B5E;padding:0;position:sticky;top:0;z-index:200;box-shadow:0 2px 12px rgba(0,0,0,.2);}
.at1-header-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;height:70px;gap:20px;}
.at1-logo{text-decoration:none;display:flex;align-items:center;gap:10px;flex-shrink:0;}
.at1-logo-mark{display:flex;align-items:center;gap:8px;}
.at1-logo-bar{display:flex;gap:2px;}
.at1-logo-bar span{background:#fff;color:#0D2B5E;font-weight:900;font-size:1rem;width:22px;height:22px;display:flex;align-items:center;justify-content:center;}
.at1-logo-text{color:white;font-size:.78rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:.5px;}
.at1-header-nav{display:flex;gap:0;flex:1;justify-content:center;}
.at1-header-nav a{color:rgba(255,255,255,.7);text-decoration:none;font-size:.75rem;font-weight:500;padding:8px 12px;transition:.2s;white-space:nowrap;}
.at1-header-nav a:hover{color:white;}
.at1-header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0;}
.at1-header-phone{color:white;text-decoration:none;font-size:.8rem;font-weight:600;display:flex;align-items:center;gap:6px;}
.at1-header-btn{padding:8px 16px;border-radius:5px;font-size:.78rem;font-weight:700;text-decoration:none;transition:.2s;}
.at1-header-btn.book{background:#2ECC71;color:white;}
.at1-header-btn.book:hover{background:#27ae60;}
.at1-header-btn.app{background:#28a745;color:white;}
.at1-header-btn.app:hover{background:#1e8235;}
@media(max-width:900px){.at1-header-nav{display:none;}.at1-header-phone{display:none;}}

/* ══════════════════════════════════════════════════════════
   HERO WIDGET (shortcode)
══════════════════════════════════════════════════════════ */
.at1-hero-widget{
  background:linear-gradient(135deg,#0D2B5E 0%,#0f3572 100%);
  padding:40px 5%;
  font-family:'Inter',system-ui,sans-serif;
}
.at1-hero-label{
  color:white;font-size:1.1rem;font-weight:700;
  margin:0 0 16px;letter-spacing:.2px;
}
.at1-search-bar{
  display:flex;align-items:stretch;gap:0;
  background:white;border-radius:6px;overflow:visible;
  box-shadow:0 4px 24px rgba(0,0,0,.2);
  max-width:900px;
}
.at1-search-field{
  flex:1;position:relative;
  border-right:1px solid #e2e8f0;
}
.at1-search-field:last-of-type{border-right:none;}
.at1-sf-icon{
  position:absolute;left:14px;top:50%;transform:translateY(-50%);
  display:flex;align-items:center;pointer-events:none;z-index:1;
}
.at1-sf-input{
  width:100%;padding:16px 14px 16px 42px;
  border:none;outline:none;font-size:.9rem;color:#2d3748;
  font-family:'Inter',sans-serif;background:transparent;
}
.at1-sf-input::placeholder{color:#a0aec0;}
.at1-btn-quote{
  background:#2ECC71;color:white;border:none;
  padding:0 32px;font-size:.95rem;font-weight:700;
  cursor:pointer;font-family:'Inter',sans-serif;
  transition:.2s;white-space:nowrap;border-radius:0 6px 6px 0;
  min-width:140px;
}
.at1-btn-quote:hover:not(:disabled){background:#27ae60;}
.at1-btn-quote:disabled{background:#94d3a2;cursor:not-allowed;}
.at1-trust-badges{
  display:flex;gap:24px;margin-top:16px;flex-wrap:wrap;
}
.at1-trust-badges span{
  color:rgba(255,255,255,.8);font-size:.8rem;
  display:flex;align-items:center;gap:6px;font-weight:500;
}

/* Autocomplete dropdown */
.at1-ac-list{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:white;border:1px solid #e2e8f0;border-top:none;
  border-radius:0 0 8px 8px;z-index:9999;
  box-shadow:0 8px 24px rgba(0,0,0,.12);overflow:hidden;max-height:240px;overflow-y:auto;
}
.at1-ac-list.open{display:block;}
.at1-ac-item{
  padding:11px 14px 11px 42px;cursor:pointer;font-size:.85rem;
  color:#2d3748;border-bottom:1px solid #f7fafc;
  transition:background .1s;line-height:1.3;
}
.at1-ac-item:hover{background:#f0fff4;}
.at1-ac-item:last-child{border-bottom:none;}
.at1-ac-item strong{display:block;font-weight:600;}
.at1-ac-item small{font-size:.75rem;color:#718096;}
.at1-error{background:#fff5f5;border:1px solid #fed7d7;color:#c53030;padding:10px 14px;border-radius:6px;font-size:.83rem;margin-top:10px;}

@media(max-width:600px){
  .at1-search-bar{flex-direction:column;}
  .at1-search-field{border-right:none;border-bottom:1px solid #e2e8f0;}
  .at1-btn-quote{border-radius:0 0 6px 6px;padding:16px;}
}

/* ══════════════════════════════════════════════════════════
   SHARED PAGE ELEMENTS (vehicle + booking pages)
══════════════════════════════════════════════════════════ */
.at1-free-banner{
  background:#ecfdf5;border-bottom:1px solid #a7f3d0;
  text-align:center;padding:10px;
  font-size:.82rem;font-weight:600;color:#065f46;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.at1-progress-wrap{background:white;border-bottom:1px solid #e2e8f0;padding:18px 0;}
.at1-progress{
  max-width:680px;margin:0 auto;
  display:flex;align-items:center;padding:0 24px;
}
.at1-prog-step{
  display:flex;flex-direction:column;align-items:center;gap:6px;flex-shrink:0;
}
.at1-prog-circle{
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;font-weight:700;
  background:#e2e8f0;color:#718096;border:2px solid #e2e8f0;
  transition:.3s;
}
.at1-prog-step span{font-size:.72rem;font-weight:600;color:#718096;white-space:nowrap;}
.at1-prog-step span a{color:inherit;text-decoration:none;}
.at1-prog-step.active .at1-prog-circle{background:#1a56db;color:white;border-color:#1a56db;}
.at1-prog-step.active span{color:#1a56db;}
.at1-prog-step.done .at1-prog-circle{background:#2ECC71;color:white;border-color:#2ECC71;}
.at1-prog-step.done span{color:#2ECC71;}
.at1-prog-line{flex:1;height:2px;background:#e2e8f0;margin-bottom:22px;}
.at1-prog-line.done{background:#2ECC71;}

.at1-route-bar{background:white;border-bottom:1px solid #e2e8f0;padding:12px 0;}
.at1-route-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.at1-route-point{display:flex;align-items:center;gap:8px;font-size:.85rem;font-weight:600;color:#2d3748;}
.at1-route-arrow{color:#a0aec0;font-size:1rem;}
.at1-dot{width:12px;height:12px;border-radius:50%;flex-shrink:0;}
.at1-dot.green{background:#2ECC71;}
.at1-dot.red{background:#E74C3C;}

/* ══════════════════════════════════════════════════════════
   VEHICLE SELECTION PAGE
══════════════════════════════════════════════════════════ */
.at1-feat-bar{background:white;border-bottom:1px solid #e2e8f0;padding:18px 0;}
.at1-feat-bar-inner{max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.at1-feat-item{display:flex;align-items:flex-start;gap:12px;}
.at1-feat-item strong{font-size:.83rem;font-weight:700;color:#2d3748;display:block;margin-bottom:2px;}
.at1-feat-item p{font-size:.75rem;color:#718096;margin:0;line-height:1.4;}

.at1-vehicles-wrap{max-width:1200px;margin:24px auto;padding:0 24px;}
.at1-vehicles-list{display:flex;flex-direction:column;gap:20px;}

.at1-veh-card{
  background:white;border-radius:10px;
  box-shadow:0 1px 8px rgba(0,0,0,.07);
  border:1px solid #e2e8f0;overflow:hidden;
  position:relative;transition:.2s;
}
.at1-veh-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.1);}
.at1-veh-badge{
  position:absolute;top:16px;left:16px;
  background:#2ECC71;color:white;
  font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:50px;
  text-transform:uppercase;letter-spacing:.5px;z-index:2;
}

.at1-veh-top{display:flex;align-items:center;gap:0;padding:24px;}
.at1-veh-meta{flex:0 0 220px;padding-right:16px;}
.at1-veh-name{font-size:1.3rem;font-weight:800;color:#1a56db;margin-bottom:4px;}
.at1-veh-subtitle{font-size:.8rem;color:#718096;margin-bottom:12px;line-height:1.4;}
.at1-veh-specs{display:flex;gap:14px;flex-wrap:wrap;}
.at1-veh-specs span{display:flex;align-items:center;gap:4px;font-size:.78rem;color:#4a5568;font-weight:500;}

.at1-veh-img{flex:1;display:flex;align-items:center;justify-content:center;padding:0 16px;}
.at1-veh-img svg{max-width:100%;height:auto;max-height:130px;}
.at1-veh-img .at1-veh-photo{max-width:100%;height:auto;max-height:130px;object-fit:contain;display:block;}

.at1-veh-price-col{flex:0 0 200px;display:flex;flex-direction:column;align-items:flex-end;gap:6px;}
.at1-veh-price-label{font-size:.72rem;color:#ff8c00;font-weight:700;text-transform:uppercase;letter-spacing:.3px;}
.at1-veh-price{font-size:2.2rem;font-weight:800;color:#1a202c;line-height:1;}
.at1-veh-rating{font-size:.78rem;color:#2ECC71;font-weight:600;display:flex;align-items:center;gap:4px;}
.at1-veh-stars{font-size:.8rem;color:#f59e0b;font-weight:600;}
.at1-veh-stars span{color:#4a5568;font-weight:500;}
.at1-veh-no-hidden{font-size:.78rem;font-weight:700;color:#2d3748;text-align:right;}
.at1-veh-no-hidden-sub{font-size:.7rem;color:#718096;font-weight:400;}
.at1-btn-booknow{
  display:block;width:100%;background:#2ECC71;color:white;
  text-decoration:none;text-align:center;
  padding:14px 20px;font-size:.88rem;font-weight:800;
  border-radius:6px;letter-spacing:.5px;
  transition:.2s;margin-top:6px;
}
.at1-btn-booknow:hover{background:#27ae60;transform:translateY(-1px);}

.at1-veh-features{
  padding:14px 24px 18px;
  border-top:1px solid #f7fafc;
  display:flex;flex-wrap:wrap;gap:8px 24px;
}
.at1-veh-feat-title{
  width:100%;display:flex;align-items:center;gap:6px;
  font-size:.82rem;font-weight:700;color:#2ECC71;margin-bottom:4px;
}
.at1-veh-feat-item{
  display:flex;align-items:center;gap:6px;
  font-size:.8rem;color:#4a5568;min-width:180px;
}
.at1-tag-free{background:#2ECC71;color:white;font-size:.65rem;font-weight:700;padding:1px 6px;border-radius:50px;margin-left:4px;}

@media(max-width:900px){
  .at1-veh-top{flex-direction:column;align-items:stretch;}
  .at1-veh-price-col{flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:space-between;}
  .at1-feat-bar-inner{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .at1-feat-bar-inner{grid-template-columns:1fr;}
}

/* ══════════════════════════════════════════════════════════
   BOOKING FORM PAGE
══════════════════════════════════════════════════════════ */
.at1-book-trust-bar{
  background:white;border-bottom:1px solid #e2e8f0;
  padding:12px 24px;display:flex;justify-content:center;gap:32px;flex-wrap:wrap;
}
.at1-book-trust-bar span{display:flex;align-items:center;gap:6px;font-size:.8rem;font-weight:600;color:#2d3748;}

.at1-book-layout{
  max-width:1200px;margin:24px auto 48px;
  padding:0 24px;display:grid;
  grid-template-columns:360px 1fr;gap:24px;align-items:start;
}

/* Sidebar */
.at1-sidebar-card{
  background:white;border-radius:10px;
  border:1px solid #e2e8f0;padding:24px;
  box-shadow:0 1px 8px rgba(0,0,0,.06);
  position:sticky;top:90px;
}
.at1-sidebar-title{font-size:1rem;font-weight:700;color:#2d3748;margin:0 0 16px;}
.at1-trip-route{margin-bottom:18px;}
.at1-trip-point{display:flex;align-items:flex-start;gap:12px;padding:8px 0;}
.at1-trip-point strong{font-size:.8rem;font-weight:700;color:#2d3748;display:block;}
.at1-trip-point p{font-size:.82rem;color:#718096;margin:2px 0 0;line-height:1.4;}
.at1-trip-line{width:2px;height:20px;background:#e2e8f0;margin-left:5px;}

.at1-sidebar-veh{padding:14px 0;border-top:1px solid #f7fafc;border-bottom:1px solid #f7fafc;margin-bottom:14px;}
.at1-sv-name{font-size:.95rem;font-weight:700;color:#2d3748;}
.at1-sv-specs{font-size:.78rem;color:#718096;margin:4px 0;}
.at1-sv-rating{font-size:.78rem;color:#f59e0b;font-weight:600;}
.at1-sv-rating span{color:#718096;font-weight:400;}

.at1-sidebar-price{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 0;border-bottom:1px solid #f7fafc;margin-bottom:16px;
}
.at1-sidebar-price span{font-size:.9rem;font-weight:600;color:#2d3748;}
.at1-sidebar-price strong{font-size:1.4rem;font-weight:800;color:#1a202c;}

.at1-sidebar-support{padding:14px 0;border-bottom:1px solid #f7fafc;margin-bottom:14px;}
.at1-sidebar-support strong{font-size:.82rem;font-weight:700;color:#2d3748;display:block;margin-bottom:8px;}
.at1-sidebar-support a{display:block;font-size:.8rem;color:#1a56db;text-decoration:none;margin-bottom:4px;}
.at1-sidebar-support a:hover{text-decoration:underline;}

.at1-sidebar-cancellation strong{font-size:.82rem;font-weight:700;color:#2d3748;display:block;margin-bottom:8px;}
.at1-sidebar-cancellation ul{padding-left:0;list-style:none;margin:0;}
.at1-sidebar-cancellation li{font-size:.78rem;color:#4a5568;line-height:1.6;}

/* Main form area */
.at1-book-main{display:flex;flex-direction:column;gap:16px;}
.at1-form-section{
  background:white;border-radius:10px;
  border:1px solid #e2e8f0;padding:22px;
  box-shadow:0 1px 8px rgba(0,0,0,.06);
}
.at1-form-section-title{font-size:.9rem;font-weight:700;color:#2d3748;margin:0 0 16px;}
.at1-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.at1-form-field{display:flex;flex-direction:column;gap:5px;}
.at1-form-field.full{grid-column:1/-1;}
.at1-form-field label{font-size:.78rem;font-weight:600;color:#4a5568;}
.at1-req{color:#e53e3e;font-size:.7rem;}
.at1-tooltip{color:#a0aec0;cursor:help;font-size:.8rem;}
.at1-input{
  padding:10px 13px;border:1.5px solid #e2e8f0;border-radius:6px;
  font-size:.88rem;color:#2d3748;font-family:'Inter',sans-serif;
  outline:none;transition:border-color .2s;background:white;width:100%;
}
.at1-input:focus{border-color:#1a56db;}
.at1-textarea{resize:vertical;min-height:80px;}
.at1-field-hint{font-size:.72rem;color:#718096;}

.at1-btn-return{
  background:none;border:1.5px dashed #a0aec0;border-radius:6px;
  padding:9px 16px;font-size:.82rem;font-weight:600;color:#4a5568;
  cursor:pointer;font-family:'Inter',sans-serif;
  display:flex;align-items:center;gap:6px;margin-top:10px;
  transition:.2s;
}
.at1-btn-return:hover{border-color:#1a56db;color:#1a56db;}

.at1-mg-toggle{
  display:flex;align-items:center;gap:10px;
  padding:10px 13px;border:1.5px solid #e2e8f0;border-radius:6px;
  cursor:pointer;transition:.2s;background:#f7fafc;
}
.at1-mg-toggle:has(input:checked){border-color:#2ECC71;background:#ecfdf5;}
.at1-mg-toggle input{width:16px;height:16px;cursor:pointer;}
.at1-mg-label{font-size:.85rem;font-weight:600;color:#2d3748;flex:1;}
.at1-mg-fee{font-size:.8rem;font-weight:700;color:#2ECC71;}

.at1-phone-wrap{display:flex;align-items:center;border:1.5px solid #e2e8f0;border-radius:6px;overflow:hidden;transition:border-color .2s;}
.at1-phone-wrap:focus-within{border-color:#1a56db;}
.at1-phone-flag{padding:0 12px;background:#f7fafc;border-right:1px solid #e2e8f0;font-size:.8rem;font-weight:600;color:#4a5568;white-space:nowrap;align-self:stretch;display:flex;align-items:center;}
.at1-phone-input{border:none!important;border-radius:0!important;}
.at1-phone-input:focus{box-shadow:none!important;}

/* Payment method */
.at1-pay-methods{display:flex;flex-direction:column;gap:10px;margin-bottom:14px;}
.at1-pay-opt{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;border:2px solid #e2e8f0;border-radius:8px;
  cursor:pointer;transition:.2s;background:#f7fafc;
}
.at1-pay-opt:hover{border-color:#a0aec0;}
.at1-pay-opt.selected{border-color:#1a56db;background:#ebf4ff;}
.at1-pay-opt input[type="radio"]{position:absolute;opacity:0;pointer-events:none;}
.at1-pay-radio{
  width:18px;height:18px;border-radius:50%;border:2px solid #a0aec0;
  flex-shrink:0;transition:.2s;display:flex;align-items:center;justify-content:center;
}
.at1-pay-opt.selected .at1-pay-radio{border-color:#1a56db;background:#1a56db;}
.at1-pay-opt.selected .at1-pay-radio::after{content:'';width:6px;height:6px;border-radius:50%;background:white;}
.at1-pay-name{font-size:.88rem;font-weight:700;color:#2d3748;}
.at1-pay-icons{display:flex;align-items:center;gap:8px;margin-left:auto;}

.at1-stripe-wrap{
  background:#f7fafc;border:1.5px solid #e2e8f0;border-radius:8px;
  padding:14px;margin-bottom:10px;
}
.at1-card-placeholder{display:flex;align-items:center;gap:16px;color:#a0aec0;font-size:.88rem;}
.at1-card-ph-note{font-size:.72rem;color:#a0aec0;margin-top:8px;text-align:center;display:block;width:100%;}
.at1-secure-note{font-size:.72rem;color:#718096;text-align:center;margin-top:8px;}

.at1-legal-note{font-size:.75rem;color:#718096;line-height:1.6;text-align:center;padding:0 10px;}
.at1-legal-note strong{color:#4a5568;}

.at1-btn-complete{
  width:100%;background:#2ECC71;color:white;border:none;
  padding:16px 24px;font-size:1rem;font-weight:700;
  border-radius:8px;cursor:pointer;font-family:'Inter',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:.2s;letter-spacing:.3px;
}
.at1-btn-complete:hover{background:#27ae60;transform:translateY(-1px);box-shadow:0 4px 16px rgba(46,204,113,.3);}
.at1-btn-complete:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none;}

/* Confirmation screens */
.at1-confirm-screen{background:white;border-radius:10px;border:1px solid #e2e8f0;padding:36px;text-align:center;box-shadow:0 1px 8px rgba(0,0,0,.06);}
.at1-confirm-icon{width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;margin:0 auto 18px;}
.at1-confirm-icon.success{background:rgba(46,204,113,.1);border:2px solid #2ECC71;}
.at1-confirm-icon.gold{background:rgba(245,158,11,.1);border:2px solid #f59e0b;}
.at1-confirm-screen h2{font-size:1.4rem;font-weight:800;color:#1a202c;margin:0 0 10px;}
.at1-confirm-screen p{font-size:.88rem;color:#718096;line-height:1.6;margin:0 0 20px;}
.at1-confirm-ref{background:#f7fafc;border:1px solid #e2e8f0;border-radius:8px;padding:14px;margin-bottom:0;}
.at1-conf-ref-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#718096;margin-bottom:6px;}
.at1-conf-ref-num{font-size:1.5rem;font-weight:900;color:#f59e0b;letter-spacing:3px;}

@media(max-width:900px){
  .at1-book-layout{grid-template-columns:1fr;}
  .at1-sidebar-card{position:static;}
}
@media(max-width:600px){
  .at1-form-row{grid-template-columns:1fr;}
  .at1-book-trust-bar{display:none;}
}

/* ══════════════════════════════════════════════════════════
   ADMIN STYLES
══════════════════════════════════════════════════════════ */
.at1-admin-wrap{max-width:1200px;padding:20px;}
.at1-admin-header{display:flex;align-items:center;gap:12px;margin-bottom:20px;padding-bottom:14px;border-bottom:2px solid #e2e8f0;}
.at1-admin-header h1{font-size:1.4rem;font-weight:800;color:#1a202c;margin:0;padding:0;}
.at1-admin-stats{display:grid;grid-template-columns:repeat(2,200px);gap:14px;margin-bottom:20px;}
.at1-stat{background:white;border:1px solid #e2e8f0;border-radius:8px;padding:18px;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.at1-stat.accent{border-top:3px solid #2ECC71;}
.at1-stat-n{font-size:1.7rem;font-weight:800;color:#1a202c;margin-bottom:4px;}
.at1-stat-l{font-size:.78rem;color:#718096;}
.at1-sc-box{background:#1a202c;color:white;border-radius:8px;padding:12px 18px;font-size:.84rem;margin-bottom:18px;display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
.at1-sc-box code{background:rgba(255,255,255,.15);color:#fbbf24;padding:3px 10px;border-radius:5px;}
.at1-card{background:white;border:1px solid #e2e8f0;border-radius:8px;padding:22px;margin-bottom:18px;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.at1-card h2{font-size:.95rem;font-weight:700;color:#1a202c;margin:0 0 16px;padding:0;}
.at1-settings-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.at1-field{margin-bottom:12px;}
.at1-field label{display:block;font-size:.78rem;font-weight:600;color:#2d3748;margin-bottom:4px;}
.at1-field input{width:100%;padding:8px 11px;border:1.5px solid #e2e8f0;border-radius:6px;font-size:.83rem;color:#2d3748;outline:none;transition:border-color .2s;}
.at1-field input:focus{border-color:#2ECC71;}
.at1-hint{display:block;font-size:.7rem;color:#718096;margin-top:3px;}
.at1-btn-save{background:#2ECC71;color:white;border:none;border-radius:6px;padding:10px 22px;font-size:.88rem;font-weight:700;cursor:pointer;margin-top:4px;}
.at1-btn-save:hover{background:#27ae60;}
.at1-table{width:100%;border-collapse:collapse;font-size:.8rem;}
.at1-table th{text-align:left;padding:9px 11px;background:#f7fafc;font-weight:700;color:#718096;font-size:.69rem;text-transform:uppercase;letter-spacing:.5px;border-bottom:1px solid #e2e8f0;}
.at1-table td{padding:9px 11px;border-bottom:1px solid #f7fafc;vertical-align:middle;}
.at1-table tr:last-child td{border-bottom:none;}
.at1-table tr:hover td{background:#fafafa;}
.at1-table input{border:1.5px solid #e2e8f0;border-radius:5px;padding:5px 7px;font-size:.8rem;outline:none;}
.at1-table input:focus{border-color:#2ECC71;}
.at1-badge{padding:2px 9px;border-radius:50px;font-size:.68rem;font-weight:700;display:inline-block;}
.at1-badge.pay-card{background:#ebf4ff;color:#1a56db;}
.at1-badge.pay-cash{background:#ecfdf5;color:#065f46;}
.at1-badge.st-confirmed{background:#ecfdf5;color:#065f46;}
.at1-badge.st-pending{background:#fffbeb;color:#92400e;}
.at1-badge.st-cancelled{background:#fff5f5;color:#c53030;}
@media(max-width:800px){.at1-settings-grid{grid-template-columns:1fr;}}
