*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#fff7ec;
  color:#111827;
}

/* HEADER */

.site-header{
  background:#f5eee3;
  border-bottom:1px solid #e7dccd;
  position:sticky;
  top:0;
  z-index:9999;
}
.booking-alert{
    max-width:900px;
    margin:0 auto 22px;
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fecaca;
    padding:16px 20px;
    border-radius:16px;
    font-weight:800;
    text-align:center;
}
.header-container{
  max-width:1400px;
  margin:auto;
  padding:14px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
input[readonly]{
    background:#f8fafc;
    color:#64748b;
    cursor:not-allowed;
}
.logo-area{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo-icon{
  width:64px;
  height:64px;
  flex:0 0 64px;
  border-radius:50%;
  overflow:hidden;
}

.logo-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.logo-text h1{
  color:#9a3412;
  font-size:22px;
  line-height:1.1;
  font-weight:800;
}

.logo-text p{
  color:#374151;
  font-size:13px;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:700;
  font-size:16px;
}

.nav-links a:hover{
  color:#ea580c;
}

.countbox{
  text-align:center;
  min-width:250px;
}

.countbox-title{
  color:#9a3412;
  font-size:15px;
  font-weight:800;
  margin-bottom:7px;
}

#countdown{
  display:flex;
  justify-content:center;
  gap:7px;
}

#countdown span{
  background:white;
  border-radius:10px;
  padding:8px 10px;
  min-width:56px;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
  color:#9a3412;
  font-size:16px;
  font-weight:800;
}

#countdown b{
  display:block;
  color:#333;
  font-size:10px;
  margin-top:3px;
}

/* HERO */

.hero{
  display:grid;
  grid-template-columns:45% 55%;
  align-items:center;
  gap:40px;
  padding:70px 6%;
  background:#fff7ec;
  overflow:hidden;
}

.hero-text h1{
  font-size:84px;
  line-height:1.05;
  color:#0f172a;
  margin-bottom:24px;
}

.welcome{
  color:#ea580c;
  font-size:24px;
  font-weight:800;
  margin-bottom:22px;
}

.date{
  color:#ea580c;
  font-size:24px;
  font-weight:800;
  margin-bottom:26px;
}

.intro{
  line-height:1.9;
  color:#374151;
  font-size:20px;
  max-width:560px;
  margin-bottom:34px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
}

.primary{
  background:#f97316;
  color:white;
}

.outline{
  border:2px solid #f97316;
  color:#c2410c;
  background:white;
}

/* SLIDER */

.hero-photo{
  width:100%;
  overflow:hidden;
  border-radius:24px;
}

.hero-slider{
  display:flex;
  width:max-content;
  animation:scrollPhotos 24s linear infinite;
}

.hero-slide{
  width:270px;
  height:380px;
  overflow:hidden;
  flex-shrink:0;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@keyframes scrollPhotos{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-810px);
  }
}

/* SECTIONS */

.section{
  padding:60px 7%;
}

.section h2{
  text-align:center;
  font-size:38px;
  margin-bottom:40px;
}

.grid{
  display:flex;
  gap:26px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  width:340px;
  background:white;
  border-radius:20px;
  padding:28px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

.card h3{
  color:#9a3412;
  margin-bottom:14px;
}

/* FOOTER */

.site-footer{
  background:#f5eee3;
  border-top:1px solid #e7dccd;
  padding:18px 30px;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#9a3412;
  font-weight:700;
}

.app-bottom-nav{
  display:none;
}

/* MOBILE */

@media(max-width:900px){

  body{
    padding-bottom:75px;
  }

  .header-container{
    padding:10px 12px;
    gap:10px;
  }

  .logo-icon{
    width:42px;
    height:42px;
    flex:0 0 42px;
  }

  .logo-text h1{
    font-size:13px;
  }

  .logo-text p{
    display:none;
  }

  .nav-links{
    display:none;
  }

  .countbox{
    min-width:auto;
  }

  .countbox-title{
    font-size:8px;
    margin-bottom:2px;
  }

  #countdown{
    gap:2px;
  }

  #countdown span{
    padding:3px 4px;
    min-width:auto;
    font-size:10px;
    border-radius:6px;
  }

  #countdown b{
    font-size:6px;
  }

  .hero{
    display:block;
    padding:0;
  }

  .hero-text{
    padding:24px 18px;
    text-align:center;
  }

  .hero-text h1{
    font-size:48px;
  }

  .welcome{
    font-size:20px;
  }

  .date{
    font-size:20px;
  }

  .intro{
    font-size:16px;
    line-height:1.7;
    margin:auto auto 26px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-photo{
    width:100vw;
    margin-left:calc(50% - 50vw);
    border-radius:0;
  }

  .hero-slide{
    width:100vw;
    height:250px;
  }

  .hero-slide img{
    width:100vw;
    height:250px;
    object-fit:cover;
  }
}
  @keyframes scrollPhotos{
    from{
      transform:translateX(0);
    }

    to{
      transform:translateX(-300vw);
    }
  }

  .site-footer{
    display:none;
  }

  .app-bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:72px;
    background:#f5eee3;
    border-top:1px solid #e7dccd;
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:99999;
  }

  .app-bottom-nav a{
    text-decoration:none;
    color:#9a3412;
    font-size:11px;
    font-weight:800;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
  }

  .app-bottom-nav i{
    font-size:20px;
    color:#f97316;
  }

/* USER DROPDOWN */

.user-dropdown{
  position:relative;
}

.user-btn{
  background:none;
  border:none;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  color:#9a3412;
  font-weight:700;
  font-size:16px;
}

.user-btn i{
  color:#ea580c;
}

.small-arrow{
  font-size:11px;
}

.dropdown-menu{
  position:absolute;
  top:42px;
  right:0;
  background:white;
  min-width:180px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  padding:10px 0;
  display:none;
  z-index:9999;
}

.dropdown-menu a{
  display:block;
  padding:12px 18px;
  text-decoration:none;
  color:#111827;
  font-weight:600;
}

.dropdown-menu a:hover{
  background:#fff7ec;
  color:#ea580c;
}

.user-dropdown:hover .dropdown-menu{
  display:block;
}
/* =========================
   HEADER LOGIN / ACCOUNT
========================= */

.header-right{
  display:flex;
  align-items:center;
  gap:26px;
}

.guest-links{
  display:flex;
  align-items:center;
  gap:10px;
}

.guest-links a{
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  padding:10px 18px;
  border-radius:999px;
}

.guest-links a:first-child{
  color:#c2410c;
  background:#fff;
  border:1px solid #fdba74;
}

.guest-links a:last-child{
  color:#fff;
  background:#f97316;
  border:1px solid #f97316;
}

.guest-links a:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(249,115,22,.22);
}

.user-dropdown{
  position:relative;
}

.user-btn{
  border:1px solid #fdba74;
  background:#fff;
  border-radius:999px;
  padding:9px 14px;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  color:#9a3412;
  font-weight:800;
  font-size:14px;
}

.user-btn i{
  color:#f97316;
}

.small-arrow{
  font-size:10px;
}

.dropdown-menu{
  position:absolute;
  top:44px;
  right:0;
  min-width:185px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  border:1px solid #fee2c2;
  overflow:hidden;
  display:none;
  z-index:99999;
}

.user-dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:13px 18px;
  color:#111827;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#fff7ec;
  color:#ea580c;
}

.dropdown-menu .logout-link{
  color:#dc2626;
}

/* =========================
   LOGIN / REGISTER PAGE
========================= */

.auth-page{
  min-height:calc(100vh - 160px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.15), transparent 35%),
    linear-gradient(135deg,#fff7ec,#fffaf4);
}

.auth-card{
  width:100%;
  max-width:430px;
  background:#fff;
  border-radius:26px;
  padding:36px;
  box-shadow:0 22px 60px rgba(0,0,0,.12);
  border:1px solid #fee2c2;
}

.auth-card h1{
  color:#9a3412;
  font-size:34px;
  margin-bottom:8px;
  text-align:center;
}

.auth-card p{
  color:#64748b;
  text-align:center;
  margin-bottom:24px;
  line-height:1.5;
}

.auth-card label{
  display:block;
  color:#7c2d12;
  font-weight:800;
  font-size:14px;
  margin:15px 0 7px;
}

.auth-card input{
  width:100%;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:14px 15px;
  font-size:15px;
  outline:none;
}

.auth-card input:focus{
  border-color:#f97316;
  box-shadow:0 0 0 4px rgba(249,115,22,.12);
}

.auth-card button{
  width:100%;
  margin-top:24px;
  padding:15px;
  border:none;
  border-radius:16px;
  background:#f97316;
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.auth-card button:hover{
  background:#ea580c;
}

.auth-error{
  background:#fee2e2;
  color:#991b1b;
  padding:12px;
  border-radius:12px;
  margin-bottom:16px;
  font-weight:800;
  text-align:center;
}

.auth-link{
  text-align:center;
  margin-top:20px;
}

.auth-link a{
  color:#ea580c;
  font-weight:900;
  text-decoration:none;
}

@media(max-width:900px){
  .guest-links,
  .user-dropdown{
    display:none;
  }

  .auth-page{
    padding:35px 16px 95px;
    align-items:flex-start;
  }

  .auth-card{
    padding:28px 22px;
    border-radius:22px;
  }
}
.mobile-account-menu{
  position:fixed;
  left:14px;
  right:14px;
  bottom:82px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  border:1px solid #fee2c2;
  overflow:hidden;
  display:none;
  z-index:100000;
}

.mobile-account-menu.show{
  display:block;
  animation:slideUpMenu .2s ease;
}

.mobile-account-menu a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 20px;
  text-decoration:none;
  color:#111827;
  font-weight:800;
  font-size:15px;
}

.mobile-account-menu a i{
  color:#f97316;
  width:20px;
}

.mobile-account-menu a:hover{
  background:#fff7ed;
  color:#ea580c;
}

.logout-mobile{
  color:#dc2626 !important;
}

@keyframes slideUpMenu{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* =========================
   PROFILE PAGE
========================= */

.profile-page{
  min-height:calc(100vh - 160px);
  background:#fff7ec;
  padding:55px 20px 90px;
  display:flex;
  justify-content:center;
}

.profile-card{
  width:100%;
  max-width:620px;
  background:white;
  border-radius:28px;
  padding:34px;
  box-shadow:0 22px 60px rgba(0,0,0,.10);
  border:1px solid #fee2c2;
}

.profile-header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}

.profile-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#fff7ec;
  color:#f97316;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  border:1px solid #fdba74;
}

.profile-header h1{
  color:#9a3412;
  font-size:32px;
  margin-bottom:4px;
}

.profile-header p{
  color:#64748b;
}

.profile-success{
  background:#dcfce7;
  color:#166534;
  padding:13px 15px;
  border-radius:14px;
  font-weight:800;
  margin-bottom:18px;
}

.profile-error{
  background:#fee2e2;
  color:#991b1b;
  padding:13px 15px;
  border-radius:14px;
  font-weight:800;
  margin-bottom:18px;
}

.profile-form label{
  display:block;
  color:#7c2d12;
  font-weight:800;
  margin:14px 0 7px;
}

.profile-form input{
  width:100%;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid #d1d5db;
  font-size:15px;
}

.profile-form input[readonly]{
  background:#f8fafc;
  color:#64748b;
  cursor:not-allowed;
}

.profile-form input:focus{
  outline:none;
  border-color:#f97316;
  box-shadow:0 0 0 4px rgba(249,115,22,.12);
}

.password-section{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid #fee2c2;
}

.password-section h2{
  color:#9a3412;
  font-size:22px;
}

.password-section p{
  color:#64748b;
  font-size:14px;
  margin-top:4px;
}

.profile-form button{
  width:100%;
  margin-top:26px;
  padding:15px;
  border:none;
  border-radius:16px;
  background:#f97316;
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.profile-form button:hover{
  background:#ea580c;
}

@media(max-width:900px){
  .profile-page{
    padding:28px 14px 95px;
  }

  .profile-card{
    padding:24px 20px;
    border-radius:22px;
  }

  .profile-header h1{
    font-size:26px;
  }
}
/* FINAL FOOTER VISIBILITY FIX */

@media(min-width:901px){
  .app-bottom-nav{
    display:none !important;
  }

  .desktop-footer{
    display:block !important;
  }

  body{
    padding-bottom:0 !important;
  }
}

@media(max-width:900px){
  .app-bottom-nav{
    display:flex !important;
  }

  .desktop-footer{
    display:none !important;
  }

  body{
    padding-bottom:75px !important;
  }
}
/* PWA MOBILE FIXED HEADER / FOOTER */

@media(max-width:900px){

  html, body{
    min-height:100%;
    overscroll-behavior:none;
  }

  .site-header{
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    z-index:100000;
  }

  body{
    padding-top:62px !important;
    padding-bottom:75px !important;
  }

  .app-bottom-nav{
    position:fixed !important;
    bottom:0;
    left:0;
    right:0;
    z-index:100000;
  }
}
/* =========================
   MY BOOKINGS
========================= */

.mybookings-page{
  min-height:calc(100vh - 160px);
  background:#fff7ec;
  padding:55px 20px 100px;
}

.mybookings-container{
  max-width:1000px;
  margin:auto;
}

.mybookings-header{
  margin-bottom:28px;
}

.mybookings-header h1{
  color:#9a3412;
  font-size:42px;
  margin-bottom:8px;
}

.mybookings-header p{
  color:#64748b;
  font-size:16px;
}

.booking-list{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.booking-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  border:1px solid #fee2c2;
}

.booking-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:24px;
}

.booking-top h2{
  color:#9a3412;
  font-size:24px;
  margin-bottom:6px;
}

.booking-date{
  color:#64748b;
  font-size:14px;
}

.booking-status{
  background:#dcfce7;
  color:#166534;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}

.booking-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.booking-item{
  background:#fffaf4;
  border-radius:16px;
  padding:16px;
}

.booking-item span{
  display:block;
  color:#64748b;
  font-size:13px;
  margin-bottom:6px;
}

.booking-item strong{
  color:#111827;
  font-size:16px;
}

.booking-item .amount{
  color:#ea580c;
  font-size:20px;
}

.empty-bookings{
  background:#fff;
  border-radius:28px;
  padding:60px 30px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  border:1px solid #fee2c2;
}

.empty-bookings i{
  font-size:58px;
  color:#f97316;
  margin-bottom:18px;
}

.empty-bookings h2{
  color:#9a3412;
  margin-bottom:10px;
}

.empty-bookings p{
  color:#64748b;
  margin-bottom:24px;
}

.book-now-btn{
  display:inline-block;
  background:#f97316;
  color:#fff;
  text-decoration:none;
  padding:14px 26px;
  border-radius:14px;
  font-weight:800;
}

@media(max-width:900px){

  .mybookings-page{
    padding:28px 14px 100px;
  }

  .mybookings-header h1{
    font-size:30px;
  }

  .booking-card{
    padding:22px 18px;
    border-radius:22px;
  }

  .booking-top{
    flex-direction:column;
    gap:12px;
  }

  .booking-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

}



/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:99999;
  background:#f5eee3;
  border-bottom:1px solid #eadfce;
}

.header-container{
  max-width:1400px;
  margin:auto;
  padding:14px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo-icon img{
  width:58px;
  height:58px;
  object-fit:contain;
}

.logo-text h1{
  font-size:22px;
  color:#9a3412;
  margin:0;
  font-weight:900;
}

.logo-text p{
  margin:3px 0 0;
  color:#475569;
  font-size:14px;
}

.header-right{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:700;
  font-size:15px;
}

.nav-links a:hover{
  color:#ea580c;
}

/* LOGIN BUTTON */

.login-btn{
  background:#f97316;
  color:#fff;
  text-decoration:none;
  padding:12px 24px;
  border-radius:999px;
  font-weight:800;
}

/* =========================
   USER DROPDOWN
========================= */

.user-dropdown{
  position:relative;
}

.user-btn{
  border:1px solid #fdba74;
  background:#fff;
  border-radius:999px;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  color:#9a3412;
  font-weight:800;
  font-size:14px;
}

.user-btn i{
  color:#f97316;
}

.small-arrow{
  font-size:10px;
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:210px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  border:1px solid #fee2c2;
  overflow:hidden;
  display:none;
  z-index:999999;
}

.dropdown-menu.show{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:14px 18px;
  text-decoration:none;
  color:#111827;
  font-weight:700;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#fff7ec;
  color:#ea580c;
}

.logout-link{
  color:#dc2626 !important;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
  }

  body{
    padding-top:76px;
  }

  .header-container{
    padding:10px 14px;
  }

  .logo-icon img{
    width:44px;
    height:44px;
  }

  .logo-text h1{
    font-size:17px;
  }

  .logo-text p{
    font-size:11px;
  }

  .nav-links{
    display:none;
  }

  .login-btn{
    padding:10px 18px;
    font-size:13px;
  }

  .user-btn{
    padding:9px 13px;
    font-size:13px;
  }

}
.trip-card small{
  display:block;
  margin-top:8px;
  color:#64748b;
  font-weight:800;
}

.trip-card.trip-full{
  opacity:.55;
  cursor:not-allowed;
  background:#f3f4f6;
  border-color:#d1d5db;
}

.trip-card.trip-full small{
  color:#dc2626;
}
.checkin-page{
  min-height:calc(100vh - 160px);
  background:#fff7ec;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px 100px;
}

.checkin-card{
  width:100%;
  max-width:520px;
  background:white;
  border-radius:26px;
  padding:34px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  text-align:center;
  border:2px solid #fee2c2;
}

.checkin-card h1{
  margin-bottom:22px;
  color:#9a3412;
}

.checkin-card.success{
  border-color:#22c55e;
}

.checkin-card.warning{
  border-color:#f59e0b;
}

.checkin-card.error{
  border-color:#dc2626;
}

.checkin-details{
  text-align:left;
  background:#fff7ec;
  border-radius:18px;
  padding:20px;
  margin-bottom:24px;
}

.checkin-details p{
  margin:8px 0;
}

.checkin-btn{
  display:inline-block;
  background:#f97316;
  color:white;
  text-decoration:none;
  padding:13px 24px;
  border-radius:14px;
  font-weight:800;
}
.booking-qr{
  margin-top:24px;
  text-align:center;
  background:#fff7ec;
  border-radius:18px;
  padding:20px;
}

.booking-qr img{
  width:190px;
  height:190px;
  background:#fff;
  padding:10px;
  border-radius:14px;
  border:1px solid #fed7aa;
}

.booking-qr p{
  margin-top:10px;
  color:#9a3412;
  font-weight:800;
}
.booking-qr-section{
    margin-top:30px;
    padding:25px;
    background:#fffaf3;
    border-radius:18px;
    text-align:center;
    border:1px solid #f3d4aa;
}

.booking-qr-section h3{
    color:#9a3412;
    margin-bottom:18px;
}

.booking-qr-image{
    width:220px;
    max-width:100%;
    border-radius:14px;
    background:white;
    padding:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.booking-qr-note{
    margin-top:12px;
    color:#64748b;
    font-size:14px;
}
.dashboard-page{
  min-height:calc(100vh - 160px);
  background:#fff7ec;
  padding:45px 18px 100px;
}

.dashboard-container{
  max-width:1200px;
  margin:auto;
}

.dashboard-container h1{
  color:#9a3412;
  font-size:40px;
}

.dashboard-container > p{
  color:#64748b;
  margin-bottom:24px;
}

.dashboard-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:22px;
}

.dashboard-stats div{
  background:white;
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  border:1px solid #fee2c2;
}

.dashboard-stats strong{
  display:block;
  font-size:38px;
  color:#9a3412;
}

.dashboard-stats span{
  color:#64748b;
  font-weight:800;
}

.dashboard-stats .green strong{
  color:#15803d;
}

.dashboard-stats .orange strong{
  color:#ea580c;
}

.dashboard-actions{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.dashboard-actions a{
  background:#f97316;
  color:white;
  text-decoration:none;
  padding:12px 20px;
  border-radius:12px;
  font-weight:900;
}

.dashboard-table-wrap{
  overflow:auto;
  background:white;
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
  border:1px solid #fee2c2;
}

.dashboard-table{
  width:100%;
  border-collapse:collapse;
  min-width:900px;
}

.dashboard-table th,
.dashboard-table td{
  padding:15px;
  text-align:left;
  border-bottom:1px solid #f1f5f9;
}

.dashboard-table th{
  color:#9a3412;
  background:#fff7ec;
}

.status-pill{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  font-weight:900;
  background:#ffedd5;
  color:#9a3412;
}

.row-checked .status-pill{
  background:#dcfce7;
  color:#166534;
}

@media(max-width:900px){
  .dashboard-stats{
    grid-template-columns:1fr;
  }

  .dashboard-container h1{
    font-size:30px;
  }
}