:root {
  --primary: #3b5d50;
  --primary-light: #4d7a6a;
  --secondary: #eff2f1;
  --accent: #f9bf29;
  --accent-dark: #e8b01a;
  --text-dark: #2a3a35;
  --text-light: #6c757d;
}

body {
  background-color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

/* Navigation */
.navbar {
  background-color: var(--primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background-color: rgba(255,255,255,0.15);
}

/* Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 20px 20px;
}

.page-header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  font-weight: 300;
}

/* Booking Cards */
.booking-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  background: white;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header {
  background-color: var(--primary);
  color: white;
  padding: 1.25rem;
  border-bottom: none;
}

.card-header h5 {
  font-weight: 600;
  margin-bottom: 0;
}

.status-badge {
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-paid {
  background-color: rgba(25, 135, 84, 0.15); /* hijau */
  color: #198754;
}

.status-pending {
  background-color: rgba(255, 193, 7, 0.15); /* kuning */
  color: #ffc107;
}

.status-canceled {
  background-color: rgba(220, 53, 69, 0.15); /* merah */
  color: #dc3545;
}

.status-maintenance {
  background-color: rgba(108, 117, 125, 0.15); /* abu-abu */
  color: #6c757d;
}

.status-requested {
  background-color: rgba(13, 110, 253, 0.15); /* biru */
  color: #0d6efd;
}

.status-approved {
  background-color: rgba(25, 135, 84, 0.15); /* hijau */
  color: #198754;
}

.status-rejected {
  background-color: rgba(220, 53, 69, 0.15); /* merah */
  color: #dc3545;
}

.status-refunded {
  background-color: rgba(32, 201, 151, 0.15); /* hijau tosca */
  color: #20c997;
}


.card-body {
  padding: 1.5rem;
}

.booking-detail {
  margin-bottom: 1.25rem;
}

.booking-detail-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #2a3a35;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #2a3a35;
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-cancel {
  background-color: #fff;
  border: 2px solid #dc3545;
  color: #dc3545;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  background-color: #dc3545;
  color: white;
  transform: translateY(-2px);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.empty-state-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Utility Classes */
.text-accent {
  color: var(--accent);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.rounded-lg {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}