/* ============================================
   RENTAL CAR BOOKING DETAIL - PERFECT RESPONSIVE
   Professional Industry Standard - All Screens
   ============================================ */

:root {
  --rentalCarsMyBookings-primary: #ff7a00;
  --rentalCarsMyBookings-primary-light: #ff9533;
  --rentalCarsMyBookings-dark: #0d0d0d;
  --rentalCarsMyBookings-dark-card: #181818;
  --rentalCarsMyBookings-white: #ffffff;
  --rentalCarsMyBookings-silver: #e5e7eb;
  --rentalCarsMyBookings-success: #10b981;
  --rentalCarsMyBookings-warning: #f59e0b;
  --rentalCarsMyBookings-danger: #ef4444;
  --rentalCarsMyBookings-info: #3b82f6;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.5);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce-vertical {
  0%,
  100% {
    transform: rotate(90deg) translateY(0);
  }
  50% {
    transform: rotate(90deg) translateY(-4px);
  }
}

/* ============================================
   BACK BUTTON
   ============================================ */

.rentalCarsMyBookings-back-btn {
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease;
}

.rentalCarsMyBookings-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--rentalCarsMyBookings-silver);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.rentalCarsMyBookings-btn-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 122, 0, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.rentalCarsMyBookings-btn-back:hover::before {
  left: 100%;
}

.rentalCarsMyBookings-btn-back:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.25),
    rgba(255, 149, 51, 0.2)
  );
  border-color: var(--rentalCarsMyBookings-primary);
  color: var(--rentalCarsMyBookings-primary);
  transform: translateX(-6px);
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.4);
}

.rentalCarsMyBookings-btn-back i {
  transition: transform 0.3s ease;
}

.rentalCarsMyBookings-btn-back:hover i {
  transform: translateX(-3px);
}

/* ============================================
   HEADER
   ============================================ */

.rentalCarsMyBookings-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(24, 24, 24, 0.98),
    rgba(34, 34, 34, 0.95)
  );
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.5s ease;
  width: 100%;
  box-sizing: border-box;
}

.rentalCarsMyBookings-detail-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rentalCarsMyBookings-primary),
    var(--rentalCarsMyBookings-primary-light),
    var(--rentalCarsMyBookings-primary),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

.rentalCarsMyBookings-detail-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
  margin: 0 0 8px 0;
  background: linear-gradient(
    135deg,
    var(--rentalCarsMyBookings-white),
    var(--rentalCarsMyBookings-silver)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.rentalCarsMyBookings-detail-ref {
  font-size: 0.95rem;
  color: var(--rentalCarsMyBookings-silver);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.rentalCarsMyBookings-detail-ref strong {
  color: var(--rentalCarsMyBookings-primary);
  font-family: "Courier New", monospace;
  letter-spacing: 1px;
  font-size: 1rem;
  padding: 3px 10px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 6px;
  display: inline-block;
}

/* ============================================
   GRID LAYOUT
   ============================================ */

.rentalCarsMyBookings-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ============================================
   CARDS
   ============================================ */

.rentalCarsMyBookings-detail-card {
  background: linear-gradient(
    145deg,
    rgba(24, 24, 24, 0.98),
    rgba(34, 34, 34, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.rentalCarsMyBookings-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rentalCarsMyBookings-detail-card:hover::before {
  opacity: 1;
}

.rentalCarsMyBookings-detail-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: 0 12px 40px rgba(255, 122, 0, 0.25);
  transform: translateY(-4px);
}

.rentalCarsMyBookings-detail-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
  margin: 0 0 22px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 122, 0, 0.4);
  position: relative;
}

.rentalCarsMyBookings-detail-card-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--rentalCarsMyBookings-primary);
  transition: width 0.3s ease;
}

.rentalCarsMyBookings-detail-card:hover
  .rentalCarsMyBookings-detail-card-title::after {
  width: 120px;
}

.rentalCarsMyBookings-detail-card-title i {
  color: var(--rentalCarsMyBookings-primary);
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   CAR IMAGE
   ============================================ */

.rentalCarsMyBookings-detail-car-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 122, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.2);
  transition: all 0.4s ease;
}

.rentalCarsMyBookings-detail-car-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
  border-color: var(--rentalCarsMyBookings-primary);
}

.rentalCarsMyBookings-detail-car-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.rentalCarsMyBookings-detail-car-type {
  font-size: 0.95rem;
  color: var(--rentalCarsMyBookings-silver);
  margin: 0 0 20px 0;
  font-weight: 600;
}

/* ============================================
   CAR SPECS
   ============================================ */

.rentalCarsMyBookings-detail-car-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rentalCarsMyBookings-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.15),
    rgba(255, 149, 51, 0.1)
  );
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 14px;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rentalCarsMyBookings-spec-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 122, 0, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.rentalCarsMyBookings-spec-item:hover::before {
  width: 150px;
  height: 150px;
}

.rentalCarsMyBookings-spec-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.25),
    rgba(255, 149, 51, 0.2)
  );
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
  border-color: var(--rentalCarsMyBookings-primary);
}

.rentalCarsMyBookings-spec-item i {
  font-size: 1.4rem;
  color: var(--rentalCarsMyBookings-primary);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.rentalCarsMyBookings-spec-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.rentalCarsMyBookings-spec-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rentalCarsMyBookings-white);
  position: relative;
  z-index: 1;
}

/* ============================================
   DATE BOXES
   ============================================ */

.rentalCarsMyBookings-detail-dates {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.rentalCarsMyBookings-date-box {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rentalCarsMyBookings-date-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 122, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.rentalCarsMyBookings-date-box:hover::before {
  left: 100%;
}

.rentalCarsMyBookings-date-box:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 122, 0, 0.12),
    rgba(255, 149, 51, 0.08)
  );
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.rentalCarsMyBookings-date-box i {
  font-size: 1.8rem;
  color: var(--rentalCarsMyBookings-primary);
  animation: pulse-glow 3s ease-in-out infinite;
}

.rentalCarsMyBookings-date-label {
  display: block;
  font-size: 0.75rem;
  color: var(--rentalCarsMyBookings-silver);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.rentalCarsMyBookings-date-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
}

.rentalCarsMyBookings-date-time {
  display: block;
  font-size: 0.85rem;
  color: var(--rentalCarsMyBookings-silver);
  font-weight: 600;
}

.rentalCarsMyBookings-date-arrow {
  font-size: 1.5rem;
  color: var(--rentalCarsMyBookings-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  animation: float 2s ease-in-out infinite;
}

.rentalCarsMyBookings-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.25),
    rgba(255, 149, 51, 0.2)
  );
  border: 1.5px solid var(--rentalCarsMyBookings-primary);
  border-radius: 20px;
  color: var(--rentalCarsMyBookings-primary);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 3px 12px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
}

.rentalCarsMyBookings-duration-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 18px rgba(255, 122, 0, 0.5);
}

/* ============================================
   INFO ITEMS
   ============================================ */

.rentalCarsMyBookings-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rentalCarsMyBookings-info-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rentalCarsMyBookings-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--rentalCarsMyBookings-primary);
  transition: height 0.3s ease;
}

.rentalCarsMyBookings-info-item:hover::before {
  height: 100%;
}

.rentalCarsMyBookings-info-item:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 122, 0, 0.12),
    rgba(255, 149, 51, 0.08)
  );
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateX(6px);
  box-shadow: 0 3px 15px rgba(255, 122, 0, 0.2);
}

.rentalCarsMyBookings-info-item i {
  font-size: 1.2rem;
  color: var(--rentalCarsMyBookings-primary);
  width: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.rentalCarsMyBookings-info-item:hover i {
  transform: scale(1.15) rotate(5deg);
}

.rentalCarsMyBookings-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--rentalCarsMyBookings-silver);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.rentalCarsMyBookings-info-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rentalCarsMyBookings-white);
}

/* ============================================
   COST BREAKDOWN
   ============================================ */

.rentalCarsMyBookings-cost-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rentalCarsMyBookings-cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--rentalCarsMyBookings-silver);
  font-weight: 600;
  transition: all 0.3s ease;
}

.rentalCarsMyBookings-cost-item:hover {
  transform: translateX(4px);
  color: var(--rentalCarsMyBookings-white);
}

.rentalCarsMyBookings-cost-item span:last-child {
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
}

.rentalCarsMyBookings-cost-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rentalCarsMyBookings-primary),
    transparent
  );
  margin: 8px 0;
  position: relative;
  overflow: hidden;
}

.rentalCarsMyBookings-cost-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

.rentalCarsMyBookings-cost-total {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--rentalCarsMyBookings-white);
  padding-top: 12px;
}

.rentalCarsMyBookings-cost-total span:last-child {
  color: var(--rentalCarsMyBookings-primary);
  font-size: 1.4rem;
}

.rentalCarsMyBookings-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(16, 185, 129, 0.15)
  );
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: 20px;
  color: var(--rentalCarsMyBookings-success);
  font-weight: 800;
  margin-top: 20px;
  font-size: 0.95rem;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.rentalCarsMyBookings-payment-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 18px rgba(16, 185, 129, 0.4);
}

.rentalCarsMyBookings-payment-badge i {
  font-size: 1.1rem;
  animation: float 2s ease-in-out infinite;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */

.rentalCarsMyBookings-detail-actions {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
}

.rentalCarsMyBookings-action-btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}

.rentalCarsMyBookings-action-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.rentalCarsMyBookings-action-btn:hover::before {
  width: 350px;
  height: 350px;
}

.rentalCarsMyBookings-action-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.rentalCarsMyBookings-action-btn:hover i {
  transform: scale(1.15) rotate(8deg);
}

.rentalCarsMyBookings-action-btn span {
  position: relative;
  z-index: 1;
}

.rentalCarsMyBookings-action-btn-cancel {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.3),
    rgba(239, 68, 68, 0.2)
  );
  color: var(--rentalCarsMyBookings-danger);
  border: 1.5px solid var(--rentalCarsMyBookings-danger);
}

.rentalCarsMyBookings-action-btn-cancel:hover {
  background: var(--rentalCarsMyBookings-danger);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.rentalCarsMyBookings-action-btn-print {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(59, 130, 246, 0.2)
  );
  color: var(--rentalCarsMyBookings-info);
  border: 1.5px solid var(--rentalCarsMyBookings-info);
}

.rentalCarsMyBookings-action-btn-print:hover {
  background: var(--rentalCarsMyBookings-info);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* ============================================
   RESPONSIVE - PROFESSIONAL
   ============================================ */

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .rentalCarsMyBookings-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .rentalCarsMyBookings-detail-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 32px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 260px;
  }
}

/* Large Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .rentalCarsMyBookings-container {
    max-width: 1140px;
    margin: 70px auto;
    padding: 0 20px;
  }

  .rentalCarsMyBookings-detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
  }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .rentalCarsMyBookings-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .rentalCarsMyBookings-back-btn {
    margin-top: 70px;
  }

  .rentalCarsMyBookings-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 26px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 200px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .rentalCarsMyBookings-container {
    padding: 20px 16px;
  }

  .rentalCarsMyBookings-back-btn {
    margin-top: 60px;
  }

  .rentalCarsMyBookings-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rentalCarsMyBookings-detail-header {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 24px;
  }

  .rentalCarsMyBookings-detail-title {
    font-size: 1.7rem;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 24px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 200px;
  }

  .rentalCarsMyBookings-detail-dates {
    flex-direction: column;
    gap: 14px;
  }

  .rentalCarsMyBookings-date-box {
    width: 100%;
  }

  .rentalCarsMyBookings-date-arrow {
    transform: rotate(90deg);
    align-self: center;
    animation: bounce-vertical 2s ease-in-out infinite;
  }

  .rentalCarsMyBookings-duration-badge {
    margin: 0 auto;
  }

  .rentalCarsMyBookings-action-btn {
    max-width: 100%;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .rentalCarsMyBookings-container {
    padding: 20px 14px;
  }

  .rentalCarsMyBookings-back-btn {
    margin-top: 50px;
  }

  .rentalCarsMyBookings-btn-back {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .rentalCarsMyBookings-detail-header {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .rentalCarsMyBookings-detail-title {
    font-size: 1.5rem;
  }

  .rentalCarsMyBookings-detail-ref {
    font-size: 0.85rem;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .rentalCarsMyBookings-detail-card-title {
    font-size: 1.1rem;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 180px;
  }

  .rentalCarsMyBookings-detail-car-name {
    font-size: 1.2rem;
  }

  .rentalCarsMyBookings-detail-car-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .rentalCarsMyBookings-spec-item {
    padding: 12px 8px;
  }

  .rentalCarsMyBookings-spec-item i {
    font-size: 1.2rem;
  }

  .rentalCarsMyBookings-spec-item span {
    font-size: 0.8rem;
  }

  .rentalCarsMyBookings-date-box {
    padding: 14px;
  }

  .rentalCarsMyBookings-date-box i {
    font-size: 1.5rem;
  }

  .rentalCarsMyBookings-date-value {
    font-size: 0.95rem;
  }

  .rentalCarsMyBookings-info-item {
    padding: 14px;
  }

  .rentalCarsMyBookings-cost-item {
    font-size: 0.9rem;
  }

  .rentalCarsMyBookings-cost-total {
    font-size: 1.2rem;
  }

  .rentalCarsMyBookings-cost-total span:last-child {
    font-size: 1.3rem;
  }

  .rentalCarsMyBookings-action-btn {
    padding: 13px 20px;
    font-size: 0.9rem;
  }
}

/* Small Mobile (425px - 575px) */
@media (max-width: 575px) {
  .rentalCarsMyBookings-container {
    padding: 18px 12px;
  }

  .rentalCarsMyBookings-detail-header {
    padding: 18px 16px;
  }

  .rentalCarsMyBookings-detail-title {
    font-size: 1.4rem;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 18px 16px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 160px;
  }

  .rentalCarsMyBookings-detail-car-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rentalCarsMyBookings-spec-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px;
    gap: 12px;
  }

  .rentalCarsMyBookings-spec-item span {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* Extra Small Mobile (375px - 424px) */
@media (max-width: 424px) {
  .rentalCarsMyBookings-container {
    padding: 16px 10px;
  }

  .rentalCarsMyBookings-detail-header {
    padding: 16px 14px;
  }

  .rentalCarsMyBookings-detail-title {
    font-size: 1.3rem;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 16px 14px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 150px;
  }

  .rentalCarsMyBookings-action-btn {
    margin-bottom: 15px;
    padding: 10px;
  }
}

/* Tiny Mobile (320px - 374px) */
@media (max-width: 374px) {
  .rentalCarsMyBookings-container {
    padding: 16px 8px;
  }

  .rentalCarsMyBookings-action-btn {
    margin-bottom: 15px;
    padding: 10px;
  }

  .rentalCarsMyBookings-detail-header {
    padding: 14px 12px;
  }

  .rentalCarsMyBookings-detail-title {
    font-size: 1.2rem;
  }

  .rentalCarsMyBookings-detail-ref {
    font-size: 0.8rem;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 14px 12px;
  }

  .rentalCarsMyBookings-detail-card-title {
    font-size: 1rem;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 140px;
  }

  .rentalCarsMyBookings-detail-car-name {
    font-size: 1.1rem;
  }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .rentalCarsMyBookings-back-btn {
    margin-top: 70px;
  }

  .rentalCarsMyBookings-detail-header {
    padding: 16px;
  }

  .rentalCarsMyBookings-detail-card {
    padding: 16px;
  }

  .rentalCarsMyBookings-detail-car-image {
    height: 120px;
  }

  .rentalCarsMyBookings-detail-dates {
    flex-direction: row;
  }

  .rentalCarsMyBookings-date-arrow {
    transform: rotate(0deg);
  }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .rentalCarsMyBookings-btn-back,
  .rentalCarsMyBookings-action-btn,
  .rentalCarsMyBookings-spec-item,
  .rentalCarsMyBookings-info-item,
  .rentalCarsMyBookings-date-box {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .rentalCarsMyBookings-action-btn {
    min-height: 48px;
  }

  .rentalCarsMyBookings-btn-back {
    min-height: 44px;
  }
}

/* Print */
@media print {
  .rentalCarsMyBookings-back-btn,
  .rentalCarsMyBookings-detail-actions {
    display: none !important;
  }

  .rentalCarsMyBookings-detail-header,
  .rentalCarsMyBookings-detail-card {
    border: 1px solid #ddd;
    page-break-inside: avoid;
    box-shadow: none;
  }

  body {
    background: white;
    color: black;
  }
}
