/*
Theme Name: Total Child Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Author: Your Name
Author URI: https://your-site.com
Template: Total
Version: 1.0
*/
/* ===============================
   VIP RESERVATION SYSTEM STYLES
   (NO CSS VARIABLES)
   =============================== */

/* ===== Service Portal ===== */
.vip-wrap{
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  max-width: 980px;
  margin: 0 auto;
  color: #0f172a;
}

.vip-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin: 6px 0 18px;
}

.vip-top h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.2px;
}

.vip-muted{
  color:#64748b;
  font-size:14px;
  margin-top:4px;
}

.vip-box{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  padding:18px;
  margin:14px 0;
}

.vip-box h3{
  margin:0 0 12px;
  font-size:18px;
}

.vip-flash{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #fecdd3;
  background:#fff1f2;
  margin:12px 0;
  font-weight:700;
}

/* ===== Layout ===== */
.vip-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

@media(max-width:720px){
  .vip-row{ grid-template-columns:1fr; }
  .vip-top{ flex-direction:column; }
}

/* ===== Inputs ===== */
.vip-wrap label{
  display:block;
  font-weight:800;
  font-size:13px;
  color:#0f172a;
  margin:10px 0 6px;
}

.vip-wrap input,
.vip-wrap select,
.vip-wrap textarea{
  width:100%;
  padding:12px 14px;
  font-size:15px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  background:#ffffff;
  outline:none;
  transition: box-shadow .2s, border-color .2s;
}

.vip-wrap input:focus,
.vip-wrap select:focus,
.vip-wrap textarea:focus{
  border-color: rgba(79,70,229,.65);
  box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}

/* ===== Buttons ===== */
.vip-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #e2e8f0;
  background:#ffffff;
  color:#0f172a;
  text-decoration:none;
  font-weight:800;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vip-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(79,70,229,.35);
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
}

.vip-wrap button{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:0;
  font-size:18px !important;
  font-weight:900;
  cursor:pointer;
  color:#ffffff;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  transition: transform .2s, box-shadow .2s;
}

.vip-wrap button:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(79,70,229,.22);
}

.vip-wrap button:disabled{
  cursor:not-allowed;
  opacity:.95;
}

/* ===== GREEN SUCCESS (3 seconds) ===== */
#vipSubmitBtn.vip-submit-ok{
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  box-shadow: 0 0 0 6px rgba(34,197,94,.20) !important;
}

/* ===== Dashboard ===== */
.vipdash{
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  max-width: 1300px;
  margin: 0 auto;
  color:#0f172a;
}

.vipdash-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin:10px 0 12px;
}

.vipdash-top h2{
  margin:0;
  font-size:24px;
}

.vipdash .muted{
  color:#64748b;
  font-size:13px;
}

.vipdash .flash{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #e2e8f0;
  background:#fafafa;
  margin:10px 0;
  font-weight:800;
}

.vipdash table{
  border-collapse: separate;
  border-spacing: 0;
  width:100%;
  margin-top:12px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.vipdash th,
.vipdash td{
  border-bottom:1px solid #e2e8f0;
  padding:10px;
  vertical-align:top;
  font-size:14px;
}

.vipdash th{
  background:#f8fafc;
  text-align:left;
  font-size:13px;
  letter-spacing:.2px;
  color:#334155;
}

.vipdash tr:last-child td{
  border-bottom:0;
}

.vipdash .badge{
  display:inline-block;
  padding:3px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid #cbd5e1;
  background:#ffffff;
}

.vipdash .ok{
  background:#ecfdf5;
  border-color: rgba(34,197,94,.35);
  color:#065f46;
}

.vipdash .warn{
  background:#fffbeb;
  border-color: rgba(245,158,11,.35);
  color:#92400e;
}

.vipdash button{
  padding:8px 12px;
  border-radius:12px;
  border:0;
  cursor:pointer;
  font-weight:900;
  color:#ffffff;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.vipdash button:hover{
  box-shadow:0 10px 22px rgba(79,70,229,.20);
  transform: translateY(-1px);
}
