/* ====== Global Variables & Reset ====== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0d7377;
  --primary-dark: #095b5e;
  --primary-light: #e6f4f4;
  --secondary: #c0392b;
  --accent: #d35400;
  --text: #1a2b3c;
  --text-light: #6b7c8d;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --glass-bg: rgba(255,255,255,0.85);
  --glass-border: rgba(255,255,255,0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ====== Navbar ====== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.nav-btn.login {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.nav-btn.login:hover {
  background: var(--primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  color: var(--text);
}

/* ====== Footer ====== */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}

/* ====== Auth Pages (Login/Register) ====== */
.auth-page {
  display: flex;
  min-height: 100vh;
}

.auth-hero {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.auth-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,115,119,0.85), transparent);
}

.auth-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 450px;
}

.auth-hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.auth-hero-content p {
  font-size: 16px;
  opacity: 0.95;
}

.auth-form-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  max-width: 600px;
  background: #fff;
}

.auth-logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.role-toggle {
  display: flex;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
}

.role-toggle button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  transition: var(--transition);
}

.role-toggle button.active {
  background: var(--primary);
  color: #fff;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 16px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  padding-left: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.checkbox-wrapper input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.checkbox-wrapper a {
  color: var(--primary);
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  margin-top: 10px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 30px;
}

/* ====== Home Page ====== */
.hero {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.search-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.search-field input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.search-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 700;
}

.section-title a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* Cards Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.prop-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prop-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.prop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.prop-card:hover .prop-image img {
  transform: scale(1.05);
}

/* Badges */
.prop-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.prop-badge.sale { background: var(--secondary); }
.prop-badge.featured { background: var(--accent); }
.prop-badge.new { background: var(--primary); }
.prop-badge.vip {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #fff;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  top: 16px;
  right: 16px;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.fav-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}
.fav-btn.active {
  color: var(--secondary);
}

/* Price Tags - Box Style */
.price-tags {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.price-tag {
  background: #0066cc;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  min-width: 70px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.price-tag span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 2px;
}

/* Prop Info */
.prop-info {
  padding: 16px;
}

/* Stars Rating */
.prop-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.prop-stars i {
  color: #f1c40f;
  font-size: 14px;
}
.prop-stars i.empty {
  color: #ddd;
}

/* Rating with number */
.prop-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  margin-bottom: 8px;
}

.prop-rating i {
  color: #f1c40f;
}

.prop-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.prop-id {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.prop-location {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Meta Icons Grid */
.prop-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.prop-meta-item i {
  font-size: 18px;
  color: var(--text);
  width: 20px;
  text-align: center;
}

/* Old meta (fallback) */
.prop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.prop-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Footer / Arrow */
.prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.prop-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.prop-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}

.card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.prop-card:hover .card-arrow {
  background: var(--primary);
  color: #fff;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
  overflow: hidden;
}

.stats-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.stats-badge i {
  color: var(--secondary);
  font-size: 20px;
}

.stats-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.stats-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin: 40px 0;
}

.cta-section p {
  font-size: 18px;
  font-weight: 600;
}

.cta-section .btn-light {
  color: var(--primary);
  font-weight: 700;
}

/* ====== Property Details ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-grid .main-img {
  grid-row: 1 / 3;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.details-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  margin: 30px 0;
  align-items: start;
}

.details-header {
  margin-bottom: 20px;
}

.details-header h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.details-header .location {
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.details-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.details-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-right: 12px;
  border-right: 3px solid var(--primary);
}

.details-section p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
}

.amenity-item i {
  font-size: 24px;
  color: var(--primary);
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 90px;
}

.price-card {
  background: var(--primary);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
}

.price-card .price {
  font-size: 28px;
  font-weight: 800;
}

.price-card .unit {
  font-size: 14px;
  opacity: 0.9;
}

.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
}

.date-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.date-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.date-input label {
  display: block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.guests-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 16px;
}

.guests-input button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-btn {
  width: 100%;
  margin-bottom: 10px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* ====== Booking Page ====== */
.booking-page {
  padding: 30px 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
}

.booking-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.summary-img {
  height: 180px;
  position: relative;
}

.summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.summary-info {
  padding: 16px;
}

.summary-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.summary-info .location {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.price-breakdown {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.price-line.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.booking-main h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-main > p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.date-picker-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.calendar-header strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.calendar-header button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-header button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(13,115,119,0.3);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.calendar-grid .day-name {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 700;
  padding: 8px 0;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-grid .day {
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: 2px solid transparent;
}

.calendar-grid .day:hover {
  background: var(--primary-light);
  border-color: rgba(13,115,119,0.15);
  transform: scale(1.1);
}

.calendar-grid .day.selected {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,115,119,0.35);
  transform: scale(1.08);
  border-color: transparent;
  font-weight: 800;
}
.calendar-grid .day.selected:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(13,115,119,0.45);
}

.calendar-grid .day.range {
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4f0f0 100%);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.calendar-grid .day.range:hover {
  background: linear-gradient(135deg, #c8e8e8 0%, var(--primary-light) 100%);
}

.guests-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.guest-row:last-child {
  margin-bottom: 0;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 16px;
}

.payment-options {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-options h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover,
.payment-method.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.payment-method .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-method input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.payment-method label {
  font-weight: 600;
  cursor: pointer;
}

.pay-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ====== My Bookings ====== */
.page-header {
  padding: 30px 0;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.page-header p {
  color: var(--text-light);
  font-size: 15px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.booking-card-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-img {
  height: 200px;
  position: relative;
}

.booking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.status-confirmed { background: var(--primary); }
.status-pending { background: #f39c12; }
.status-completed { background: #27ae60; }

.booking-info {
  padding: 16px;
}

.booking-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-dates {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.booking-location {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.booking-guests {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.booking-actions {
  display: flex;
  gap: 10px;
}

.booking-actions .btn {
  flex: 1;
  font-size: 13px;
  padding: 10px;
}

/* Stats cards */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--primary);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.stat-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card .num {
  font-size: 32px;
  font-weight: 800;
}

/* ====== Favorites ====== */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.fav-card .prop-footer {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

/* ====== Profile ====== */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  margin: 30px 0;
  align-items: start;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.profile-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.profile-card .join-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 10px;
}

.profile-actions .btn {
  flex: 1;
  font-size: 13px;
}

.contact-info {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-item i {
  color: var(--primary);
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.section-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.settings-item:last-child {
  border: none;
}

.settings-item .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings-item .left i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.settings-item .info h4 {
  font-size: 14px;
  font-weight: 600;
}

.settings-item .info p {
  font-size: 12px;
  color: var(--text-light);
}

.settings-item .arrow {
  color: var(--text-light);
}

.settings-item.danger .left i {
  background: #fdeaea;
  color: var(--secondary);
}

.settings-item.danger .info h4 {
  color: var(--secondary);
}

/* Favorites preview */
.fav-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fav-preview-item {
  text-align: center;
}

.fav-preview-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.fav-preview-item h5 {
  font-size: 13px;
  font-weight: 600;
}

.fav-preview-item p {
  font-size: 12px;
  color: var(--text-light);
}

.view-all-fav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.view-all-fav a {
  font-size: 13px;
  color: var(--primary);
}

/* Promo banner */
.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  padding: 30px;
  color: #fff;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,115,119,0.8);
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.promo-content a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* ====== Owner Dashboard ====== */
.owner-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin: 24px 0;
  align-items: start;
}

.owner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.owner-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: right;
}

.owner-sidebar .nav-item:hover,
.owner-sidebar .nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.owner-sidebar .nav-item i {
  width: 24px;
  font-size: 16px;
}

.owner-sidebar .nav-item.primary {
  background: var(--primary);
  color: #fff;
  margin-bottom: 8px;
}
.owner-sidebar .nav-item.primary:hover {
  background: var(--primary-dark);
}

/* Stats cards row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card-white {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-card-white .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.stat-card-white h4 {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stat-card-white .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.stat-card-green {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-card-green .num {
  font-size: 36px;
  font-weight: 800;
}

.stat-card-green p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

/* Steps */
.steps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.steps-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.step-item.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.step-item.completed .step-circle {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.step-item.active .step-label {
  color: var(--primary);
}

/* Form Section Card */
.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.form-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
  padding: 12px 16px;
}

/* Capacity Box */
.capacity-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px;
}

.capacity-box h4 {
  font-size: 14px;
  margin-bottom: 16px;
}

.capacity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.capacity-row:last-child {
  margin-bottom: 0;
}

.capacity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capacity-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Amenities Select */
.amenities-select {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.amenity-select-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.amenity-select-item:hover {
  border-color: var(--primary);
}

.amenity-select-item.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.amenity-select-item i {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  color: var(--text);
}

.amenity-select-item .check {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
}

.amenity-select-item.selected .check {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-light);
}

.upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.upload-area i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.upload-area p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.upload-area span {
  font-size: 12px;
  color: var(--text-light);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 24px;
  transition: var(--transition);
}

.toggle-switch .slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .slider {
  background: var(--primary);
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(20px);
}

/* Booking Request Card */
.booking-req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.booking-req-img {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.booking-req-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-req-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.booking-req-meta span {
  margin-left: 12px;
}

.booking-req-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.booking-req-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 100px;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.status-badge.pending { background: #fff3e0; color: #e65100; }
.status-badge.confirmed { background: var(--primary-light); color: var(--primary); }
.status-badge.cancelled { background: #fdeaea; color: var(--secondary); }

/* Chart Bar */
.chart-container {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  gap: 12px;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chart-bar {
  width: 100%;
  background: var(--primary-light);
  border-radius: 8px 8px 0 0;
  transition: var(--transition);
}

.chart-bar.active {
  background: var(--primary);
}

.chart-label {
  font-size: 12px;
  color: var(--text-light);
}

/* Activity Item */
.activity-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border: none;
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.activity-content h5 {
  font-size: 13px;
  font-weight: 600;
}

.activity-content p {
  font-size: 12px;
  color: var(--text-light);
}

.activity-content .time {
  font-size: 11px;
  color: var(--text-light);
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.quick-action-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Property Status Card */
.status-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.status-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

/* ====== Admin Panel ====== */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin: 24px 0;
  align-items: start;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 24px;
}

.admin-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: right;
  justify-content: space-between;
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.admin-sidebar .nav-item i:first-child {
  font-size: 18px;
}

.admin-sidebar .nav-item i:last-child {
  font-size: 14px;
  opacity: 0.6;
}

.admin-sidebar .logo-area {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 10px;
}

.admin-sidebar .logo-area .logo {
  font-size: 20px;
}

.admin-sidebar .logo-area p {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.admin-sidebar .support-btn {
  margin-top: auto;
  padding: 12px;
  background: #0066cc;
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

/* Admin Navbar */
.admin-navbar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-navbar .search-box {
  flex: 1;
  max-width: 400px;
}

.admin-navbar .search-box input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  background: var(--bg-light);
}

/* Admin Stats Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-stat-card.orange {
  background: linear-gradient(135deg, #d35400, #e67e22);
  color: #fff;
  border: none;
}

.admin-stat-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.admin-stat-card.orange .icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.admin-stat-card .info h4 {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.admin-stat-card.orange .info h4 {
  color: rgba(255,255,255,0.9);
}

.admin-stat-card .info .num {
  font-size: 24px;
  font-weight: 800;
}

.admin-stat-card .trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
  display: inline-block;
}

.admin-stat-card .trend.up {
  background: #e6f4f4;
  color: var(--primary);
}

/* Admin Table */
.admin-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--bg-light);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table .prop-img {
  width: 50px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

/* Admin status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.badge-pending { background: #fff3e0; color: #e65100; }
.badge-pending .badge-dot { background: #e65100; }

.badge-approved { background: #e6f4f4; color: var(--primary); }
.badge-approved .badge-dot { background: var(--primary); }

.badge-active { background: #e6f4f4; color: var(--primary); }
.badge-active .badge-dot { background: var(--primary); }

.badge-under-review { background: #fff8e1; color: #f9a825; }
.badge-under-review .badge-dot { background: #f9a825; }

.badge-suspended { background: #fdeaea; color: var(--secondary); }
.badge-suspended .badge-dot { background: var(--secondary); }

/* Filter bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-bar h3 {
  font-size: 16px;
  font-weight: 700;
}

.filter-bar p {
  font-size: 13px;
  color: var(--text-light);
}

/* Charts */
.donut-chart {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.donut-chart svg {
  transform: rotate(-90deg);
}

.donut-chart .donut-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-chart .donut-text .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.donut-chart .donut-text .label {
  font-size: 12px;
  color: var(--text-light);
}

/* Progress bar */
.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar .fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-bar .fill.orange { background: #e67e22; }

/* Settings */
.settings-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.settings-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
  border: 3px solid transparent;
}

.color-circle.active {
  border-color: var(--text);
}

.logo-upload {
  width: 80px;
  height: 80px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

/* Announcement btn */
.announce-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .auth-page {
    flex-direction: column;
  }
  .auth-hero {
    min-height: 300px;
    padding: 30px;
  }
  .auth-form-wrapper {
    max-width: 100%;
    padding: 30px;
  }
  .hero {
    height: auto;
    padding: 40px 0;
  }
  .search-fields {
    grid-template-columns: 1fr;
  }
  .stats-section {
    grid-template-columns: 1fr;
  }
  .details-layout,
  .booking-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar,
  .profile-sidebar {
    order: -1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .gallery-grid .main-img {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar .container {
    height: 60px;
  }
  .properties-grid,
  .favorites-grid,
  .bookings-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-cards {
    grid-template-columns: 1fr;
  }
  .fav-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ====== Animations ====== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* ====== Page Entrance ====== */
.admin-layout > div,
.admin-layout > aside {
  animation: fadeIn 0.5s ease-out;
}

/* ====== Navbar Glassmorphism ====== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.92) !important;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ====== Card Enhancements ====== */
.settings-card,
.booking-card,
.prop-card,
.review-card,
.owner-card {
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.settings-card:hover,
.booking-card:hover,
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,115,119,0.15);
}
.prop-card {
  overflow: hidden;
}
.prop-card:hover .card-arrow {
  transform: translateX(0);
  opacity: 1;
}
.prop-card:hover img {
  transform: scale(1.05);
}
.prop-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== Button Enhancements ====== */
.btn {
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after {
  transform: translateX(100%);
}
.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  box-shadow: 0 4px 14px rgba(13,115,119,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(13,115,119,0.45);
  transform: translateY(-2px);
}

/* ====== Table Enhancements ====== */
.admin-table table tbody tr {
  transition: var(--transition);
}
.admin-table table tbody tr:hover {
  background: var(--primary-light);
  transform: scale(1.005);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-table th {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}

/* ====== Sidebar Enhancements ====== */
.admin-sidebar .nav-item {
  transition: var(--transition-bounce);
  position: relative;
}
.admin-sidebar .nav-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--primary);
  border-radius: 3px 0 0 3px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.admin-sidebar .nav-item:hover::before,
.admin-sidebar .nav-item.active::before {
  transform: translateY(-50%) scaleY(1);
}
.admin-sidebar .nav-item.active {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.05) 100%);
  font-weight: 700;
}
.admin-sidebar {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* ====== Stats Cards Enhancements ====== */
.admin-stat-card {
  transition: var(--transition-bounce);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.admin-stat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13,115,119,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.admin-stat-card:hover::after {
  opacity: 1;
}
.admin-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.admin-stat-card .num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ====== Skeleton Loading ====== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-gray) 25%, var(--border-light) 50%, var(--bg-gray) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-xs);
}
.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-title { height: 24px; width: 60%; margin-bottom: 12px; }
.skeleton-circle { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-img { width: 100%; height: 160px; border-radius: var(--radius-sm); }

/* ====== Toast Enhancements ====== */
.admin-toast {
  animation: fadeInDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ====== Form Enhancements ====== */
.form-control {
  transition: var(--transition);
  border: 1px solid var(--border);
  background: var(--bg);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,115,119,0.1);
  transform: translateY(-1px);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-gray);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13,115,119,0.4);
  transition: var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(13,115,119,0.5);
}

/* ====== Toggle Switch Enhancements ====== */
.toggle-switch .slider {
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.toggle-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(13,115,119,0.3);
}

/* ====== Badge Enhancements ====== */
.badge {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ====== Search Box Enhancements ====== */
.search-box input {
  transition: var(--transition);
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.search-box input:focus {
  background: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,115,119,0.08);
}

/* ====== Activity Item Enhancements ====== */
.activity-item {
  transition: var(--transition);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.activity-item:hover {
  background: var(--bg-light);
  transform: translateX(-4px);
}

/* ====== Approval Card Enhancements ====== */
#approvalsGrid > .settings-card {
  transition: var(--transition-bounce);
}
#approvalsGrid > .settings-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* ====== Hero Section Enhancements ====== */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,115,119,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ====== Footer Enhancements ====== */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

/* ====== Color Circle Enhancements ====== */
.color-circle {
  transition: var(--transition-bounce);
  cursor: pointer;
}
.color-circle:hover {
  transform: scale(1.15);
}
.color-circle.active {
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--primary);
  transform: scale(1.1);
}

/* ====== Support Button Enhancements ====== */
.support-btn {
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}

/* ====== Filter Bar Enhancements ====== */
.filter-bar {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
  border: 1px solid var(--border-light);
}

/* ====== Pagination Enhancements ====== */
#usersPagination button,
#bookingsPagination button,
#propsPagination button {
  transition: var(--transition-bounce);
}
#usersPagination button:hover,
#bookingsPagination button:hover,
#propsPagination button:hover {
  transform: translateY(-2px);
}

/* ====== Scrollbar Enhancements ====== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* ====== Announce Button Enhancements ====== */
.announce-btn {
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}
.announce-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,115,119,0.25);
}

/* ====== Loading Spinner ====== */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--bg-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}


/* ====== OWNER SIDEBAR PROFESSIONAL REDESIGN ====== */
.owner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius);
  padding: 16px 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.owner-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  background: transparent;
  text-align: right;
}

.owner-sidebar .nav-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 4px 0 0 4px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.owner-sidebar .nav-item:hover::before,
.owner-sidebar .nav-item.active::before {
  transform: translateY(-50%) scaleY(1);
}

.owner-sidebar .nav-item:hover {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.03) 100%);
  color: var(--primary);
  transform: translateX(-4px);
}

.owner-sidebar .nav-item.active {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.06) 100%);
  color: var(--primary);
  font-weight: 700;
}

.owner-sidebar .nav-item i {
  width: 24px;
  font-size: 17px;
  text-align: center;
  transition: transform 0.3s ease;
}

.owner-sidebar .nav-item:hover i {
  transform: scale(1.15);
}

.owner-sidebar .nav-item.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(13,115,119,0.35);
  font-weight: 700;
}
.owner-sidebar .nav-item.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #074446 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,115,119,0.45);
}
.owner-sidebar .nav-item.primary::before {
  display: none;
}

/* Support button in owner sidebar */
.owner-sidebar .support-btn {
  margin-top: auto;
  padding: 14px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 14px rgba(0,102,204,0.3);
  margin-top: 16px;
}
.owner-sidebar .support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,102,204,0.4);
}

/* Logout in owner sidebar */
.owner-sidebar a[href="login.html"] {
  margin-top: 8px;
  color: var(--secondary) !important;
  font-weight: 600;
}
.owner-sidebar a[href="login.html"]:hover {
  background: rgba(192,57,43,0.06) !important;
  color: var(--secondary) !important;
}
.owner-sidebar a[href="login.html"]::before {
  background: var(--secondary) !important;
}

/* ====== PROFILE SIDEBAR PROFESSIONAL REDESIGN ====== */
.profile-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.profile-sidebar .user-info {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.profile-sidebar .user-info img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 12px rgba(13,115,119,0.15);
  transition: var(--transition-bounce);
}
.profile-sidebar .user-info:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(13,115,119,0.25);
}

.profile-sidebar .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.profile-sidebar .menu-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 4px 0 0 4px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-sidebar .menu-item:hover::before,
.profile-sidebar .menu-item.active::before {
  transform: translateY(-50%) scaleY(1);
}

.profile-sidebar .menu-item:hover,
.profile-sidebar .menu-item.active {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.03) 100%);
  color: var(--primary);
}

.profile-sidebar .menu-item.active {
  font-weight: 700;
}

.profile-sidebar .menu-item i {
  width: 24px;
  font-size: 17px;
  text-align: center;
  transition: transform 0.3s ease;
}

.profile-sidebar .menu-item:hover i {
  transform: scale(1.15);
}

/* ====== BOOKING SIDEBAR (property-details) REDESIGN ====== */
.booking-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.booking-sidebar .package-box {
  transition: var(--transition-bounce);
  border: 2px solid var(--border-light);
}
.booking-sidebar .package-box:hover {
  transform: translateY(-4px);
  border-color: rgba(13,115,119,0.2);
  box-shadow: var(--shadow-lg);
}

/* ====== ADMIN SIDEBAR FINAL POLISH ====== */
.admin-sidebar .logo-area {
  text-align: center;
  padding: 24px 0 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.admin-sidebar .logo-area .logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====== Calendar Empty Days Hidden ====== */
.calendar-grid .day:empty {
  visibility: hidden;
  pointer-events: none;
}

/* ====== Date Picker Summary Cards ====== */
.date-picker-section > div > div:first-of-type > div {
  transition: var(--transition-bounce);
  border: 2px solid transparent;
}
.date-picker-section > div > div:first-of-type > div:hover {
  transform: translateY(-3px);
  border-color: rgba(13,115,119,0.2);
  box-shadow: var(--shadow-md);
}


/* ====== PROFESSIONAL DESIGN SYSTEM v2 ====== */

/* Enhanced Cards with Glassmorphism */
.settings-card,
.admin-table,
.stat-card-white,
.booking-card,
.review-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.settings-card::before,
.admin-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #14b8a6 50%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.settings-card:hover::before,
.admin-table:hover::before {
  opacity: 1;
}

.settings-card:hover,
.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,115,119,0.1), 0 4px 12px rgba(0,0,0,0.05);
  border-color: rgba(13,115,119,0.15);
}

/* Enhanced Stats Cards */
.admin-stat-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(13,115,119,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.admin-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(13,115,119,0.12), 0 8px 20px rgba(0,0,0,0.06);
  border-color: rgba(13,115,119,0.2);
}

.admin-stat-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admin-stat-card:hover .icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(13,115,119,0.25);
}

.admin-stat-card .num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-stat-card .trend {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.admin-stat-card.orange .trend {
  background: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}

/* Enhanced Tables */
.admin-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.admin-table thead th {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 700;
  font-size: 13px;
  color: #64748b;
  padding: 16px;
  border-bottom: 2px solid #e2e8f0;
  text-transform: none;
  letter-spacing: 0;
}

.admin-table tbody tr {
  transition: all 0.25s ease;
}

.admin-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(13,115,119,0.04) 0%, rgba(13,115,119,0.01) 100%);
  transform: scale(1.005);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  z-index: 1;
  position: relative;
}

.admin-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

/* Enhanced Buttons */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0a8f94 100%);
  box-shadow: 0 4px 16px rgba(13,115,119,0.35), 0 2px 4px rgba(13,115,119,0.1);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(13,115,119,0.45), 0 4px 8px rgba(13,115,119,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13,115,119,0.3);
}

.btn-light {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  color: var(--text);
}

.btn-light:hover {
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: var(--primary);
  color: var(--primary);
}

/* Enhanced Forms */
.form-control {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,115,119,0.1), 0 4px 12px rgba(13,115,119,0.08);
  background: #fff;
  transform: translateY(-2px);
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

/* Enhanced Filter Bar */
.filter-bar {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
  margin-bottom: 24px;
}

.filter-bar h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Enhanced Sidebar for Admin & Owner */
.admin-sidebar,
.owner-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  border-radius: 20px;
  padding: 20px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.admin-sidebar .logo-area,
.owner-sidebar .logo-area {
  padding: 24px 0 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.admin-sidebar .logo-area .logo,
.owner-sidebar .logo-area .logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-sidebar .nav-item,
.owner-sidebar .nav-item {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 4px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admin-sidebar .nav-item:hover,
.owner-sidebar .nav-item:hover {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.03) 100%);
  transform: translateX(-4px);
}

.admin-sidebar .nav-item.active,
.owner-sidebar .nav-item.active {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.08) 100%);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(13,115,119,0.08);
}

/* Enhanced Pagination */
#usersPagination button,
#bookingsPagination button,
#propsPagination button,
#dashApprovalPages button {
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#usersPagination button:hover,
#bookingsPagination button:hover,
#propsPagination button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13,115,119,0.2);
}

/* Enhanced Badges */
.badge {
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* Enhanced Stepper for Add Property */
.steps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 40px;
}

.step-line {
  position: absolute;
  top: 24px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #e2e8f0 0%);
  border-radius: 3px;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #94a3b8;
  margin: 0 auto 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,115,119,0.35);
  transform: scale(1.1);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

.step.completed .step-circle {
  background: linear-gradient(135deg, var(--primary-light) 0%, #e6f4f4 100%);
  border-color: var(--primary);
  color: var(--primary);
}

.step.completed .step-label {
  color: var(--primary);
  font-weight: 600;
}

/* Enhanced Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.form-step.active {
  display: block;
}

/* Enhanced Approval Cards */
#approvalsGrid > .settings-card {
  border-radius: 20px;
  overflow: hidden;
}

#approvalsGrid > .settings-card img {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#approvalsGrid > .settings-card:hover img {
  transform: scale(1.08);
}

/* Enhanced Navbar Glassmorphism */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Enhanced Announce Button */
.announce-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 16px rgba(13,115,119,0.3);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announce-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #074446 100%);
  box-shadow: 0 8px 24px rgba(13,115,119,0.4);
  transform: translateY(-2px);
}

/* Enhanced Support Button */
.support-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  box-shadow: 0 4px 16px rgba(0,102,204,0.25);
  font-weight: 700;
}

.support-btn:hover {
  background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
  box-shadow: 0 8px 24px rgba(0,102,204,0.35);
  transform: translateY(-3px);
}

/* Enhanced Primary Nav Item in Sidebar */
.owner-sidebar .nav-item.primary,
.admin-sidebar .nav-item.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 16px rgba(13,115,119,0.3);
  font-weight: 700;
  border-radius: 12px;
}

.owner-sidebar .nav-item.primary:hover,
.admin-sidebar .nav-item.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #074446 100%);
  box-shadow: 0 8px 24px rgba(13,115,119,0.4);
  transform: translateY(-2px);
}

/* Enhanced Calendar (from previous update) */
.calendar-header {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

.calendar-grid {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

/* Enhanced Activity Items */
.activity-item {
  padding: 14px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
}

.activity-item:hover {
  background: linear-gradient(90deg, var(--primary-light) 0%, rgba(13,115,119,0.02) 100%);
  border-color: rgba(13,115,119,0.1);
  transform: translateX(-6px);
}

/* Enhanced Toast */
.admin-toast {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  box-shadow: 0 8px 32px rgba(13,115,119,0.3);
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 700;
}

/* Enhanced Toggle Switch */
.toggle-switch .slider {
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

.toggle-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(13,115,119,0.3);
}

/* Enhanced Color Circles */
.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.color-circle:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.color-circle.active {
  border-color: #fff;
  box-shadow: 0 0 0 3px var(--primary), 0 4px 12px rgba(13,115,119,0.2);
  transform: scale(1.15);
}

/* Enhanced Range Sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary) var(--value, 50%), #e2e8f0 var(--value, 50%));
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(13,115,119,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 20px rgba(13,115,119,0.4);
}

/* Enhanced Select dropdowns */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230d7377' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 44px;
  cursor: pointer;
}

/* Enhanced Capacity Controls */
.capacity-controls button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.capacity-controls button:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(13,115,119,0.25);
}

.capacity-controls .count {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* Enhanced Payment Method Cards */
.payment-method {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
}

.payment-method:hover {
  border-color: rgba(13,115,119,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,115,119,0.08);
}

.payment-method.active {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--primary-light) 0%, rgba(13,115,119,0.03) 100%);
  box-shadow: 0 4px 16px rgba(13,115,119,0.1);
}

/* Enhanced Property Cards */
.prop-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13,115,119,0.1), 0 8px 20px rgba(0,0,0,0.06);
  border-color: rgba(13,115,119,0.15);
}

.prop-card:hover img {
  transform: scale(1.08);
}

.prop-card img {
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced VIP Badge */
.vip-badge {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Enhanced Price Tags */
.price-tags span {
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4f0f0 100%);
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.price-tags span:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: scale(1.05);
}

/* Enhanced Rating Stars */
.prop-rating i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.prop-rating:hover i {
  transform: scale(1.2);
}

/* Enhanced Logo Upload */
.logo-upload {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 16px rgba(13,115,119,0.25);
}

/* Enhanced Package Box */
.package-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-box:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,115,119,0.12);
}

/* Enhanced Rules Grid */
.rules-grid .rule-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.3s ease;
}

.rules-grid .rule-item:hover {
  border-color: rgba(13,115,119,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,115,119,0.06);
}

/* Enhanced Amenity Items */
.amenity-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--primary-light) 0%, rgba(13,115,119,0.03) 100%);
  transform: translateX(-4px);
}

/* Enhanced Profile Card */
.profile-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.profile-avatar {
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Enhanced Status Cards */
.status-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Enhanced Guest Controls */
.guest-controls button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.guest-controls button:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(13,115,119,0.25);
}

/* Enhanced Table Footer */
.admin-table > div:last-child {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  padding: 16px 24px;
}

/* Enhanced Loading State */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 10px;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 5px;
  border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
}

/* Enhanced Animations for Page Load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply staggered animations to common elements */
.admin-stats > *:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.1s both; }
.admin-stats > *:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.2s both; }
.admin-stats > *:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.3s both; }
.admin-stats > *:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.4s both; }

.settings-card { animation: fadeInScale 0.5s ease-out both; }
.filter-bar { animation: fadeInUp 0.5s ease-out both; }
.admin-table { animation: fadeInUp 0.5s ease-out 0.2s both; }
.admin-sidebar { animation: slideInRight 0.5s ease-out both; }
.owner-sidebar { animation: slideInRight 0.5s ease-out both; }
