// ========================================
// BOOKINGS — Page Layout (shared)
// ========================================

.bookings-page-modern {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;

  .page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  .control-bar {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 1rem;
  }

  .page-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
  }

  .control-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .control-right {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .action-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.4rem 0.875rem;
    font-weight: 600;
    font-size: 0.75rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;

    i {
      font-size: 0.875rem;
    }

    span {
      font-size: 0.75rem;
    }

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    &.filter-btn:hover {
      border-color: #3b82f6;
      color: #3b82f6;
      background: #eff6ff;
    }

    &.add-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;

      &:hover {
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
      }
    }
  }
}

.status-badge {
  .bookings-page-modern & {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    &.pending {
      background: #fed7aa;
      color: #9a3412;
    }

    &.confirmed {
      background: #dbeafe;
      color: #1d4ed8;
    }

    &.cancelled {
      background: #fee2e2;
      color: #b91c1c;
    }

    &.completed {
      background: #bbf7d0;
      color: #15803d;
    }
  }
}

.white-space-preline {
  white-space: pre-line;
}

// ========================================
// BOOKINGS — Calendar View
// ========================================

.bookings-page-modern {
  .calendar-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;

    @media (max-width: 768px) {
      border-radius: 12px;
      padding: 1rem;
    }

    @media (max-width: 480px) {
      border-radius: 0;
      padding: 0.75rem;
      margin-left: -1rem;
      margin-right: -1rem;
    }
  }
}

.fc-container {
  min-height: 600px;
  width: 100%;

  @media (max-width: 768px) {
    min-height: 500px;
  }

  @media (max-width: 480px) {
    min-height: 400px;
  }
}

.bookings-page-modern .calendar-card {
  .fc {
    font-family: inherit;

    @media (max-width: 768px) {
      font-size: 0.875rem;
    }

    @media (max-width: 480px) {
      font-size: 0.75rem;
    }
  }

  .fc-header-toolbar {
    @media (max-width: 768px) {
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1rem !important;

      .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      .fc-button-group button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
      }

      .fc-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
      }

      .fc-toolbar-title {
        font-size: 1rem !important;
        margin: 0.5rem 0;
      }
    }

    @media (max-width: 480px) {
      .fc-button-group button {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
      }

      .fc-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
      }

      .fc-toolbar-title {
        font-size: 0.9rem !important;
      }
    }
  }

  .fc-daygrid-day-frame {
    @media (max-width: 480px) {
      min-height: 60px !important;
    }
  }

  .fc-daygrid-day-number {
    @media (max-width: 480px) {
      padding: 2px 4px !important;
      font-size: 0.75rem !important;
    }
  }

  .fc-col-header-cell {
    @media (max-width: 480px) {
      padding: 0.5rem 0.25rem !important;

      .fc-col-header-cell-cushion {
        font-size: 0.7rem !important;
      }
    }
  }

  .fc-event {
    cursor: pointer;
    border-radius: 4px;

    @media (max-width: 480px) {
      font-size: 0.7rem;
      padding: 1px 2px;
      margin: 1px 0;
    }
  }

  .fc-daygrid-event {
    border-radius: 4px;
    padding: 2px 4px;

    @media (max-width: 480px) {
      padding: 1px 2px;
      font-size: 0.7rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  .fc-timegrid-event {
    border-radius: 4px;

    @media (max-width: 480px) {
      font-size: 0.7rem;
    }
  }

  .fc-more-link {
    @media (max-width: 480px) {
      font-size: 0.7rem;
      padding: 2px 4px;
    }
  }
}

// ========================================
// BOOKINGS — Calendar Modal
// ========================================

.booking-calendar-modal-wrapper {
  .modal-dialog {
    @media (max-width: 768px) {
      max-width: 100% !important;
      margin: 0 !important;
      width: 100% !important;
    }
  }

  .modal-content {
    @media (max-width: 768px) {
      border-radius: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
    }
  }

  .modal-body {
    @media (max-width: 768px) {
      padding: 1rem !important;
      overflow-y: auto !important;
    }

    @media (max-width: 480px) {
      padding: 0.75rem !important;
    }
  }

  .modal-header {
    @media (max-width: 768px) {
      padding: 1rem !important;
      border-bottom: 2px solid #f1f5f9;
    }

    @media (max-width: 480px) {
      padding: 0.75rem !important;

      .modal-title {
        font-size: 1rem !important;
      }
    }
  }
}

@media (max-width: 768px) {
  .booking-calendar-modal-wrapper {
    .row {
      margin-left: -0.5rem;
      margin-right: -0.5rem;
    }

    [class*="col-"] {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      margin-bottom: 0.75rem;
    }

    strong {
      font-size: 0.875rem;
      display: block;
      margin-bottom: 0.25rem;
      color: #64748b;
    }

    .status-badge {
      font-size: 0.7rem;
      padding: 0.35rem 0.7rem;
    }
  }
}

// ========================================
// BOOKINGS — Index List View
// ========================================

.bookings-page-modern {
  .table-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }

  .modern-table {
    .vgt-table {
      border: none;

      thead {
        background: #f8fafc;

        th {
          border: none;
          padding: 1rem;
          font-weight: 700;
          color: #334155;
          text-transform: uppercase;
          font-size: 0.75rem;
          letter-spacing: 0.05em;
        }
      }

      tbody {
        tr {
          border-bottom: 1px solid #f1f5f9;
          transition: all 0.2s ease;

          &:hover {
            background: #f8fafc;
          }

          td {
            padding: 1rem;
            color: #475569;
            font-size: 0.9rem;
          }
        }
      }
    }
  }
}

.action-buttons-cell {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.action-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;

  &.view {
    color: #0ea5e9;
    background: #e0f2fe;

    &:hover {
      background: #0ea5e9;
      color: white;
      transform: scale(1.05);
    }
  }

  &.edit {
    color: #10b981;
    background: #d1fae5;

    &:hover {
      background: #10b981;
      color: white;
      transform: scale(1.05);
    }
  }

  &.email {
    color: #6366f1;
    background: #e0e7ff;

    &:hover {
      background: #6366f1;
      color: white;
      transform: scale(1.05);
    }
  }

  &.delete {
    color: #ef4444;
    background: #fee2e2;

    &:hover {
      background: #ef4444;
      color: white;
      transform: scale(1.05);
    }
  }
}

// ========================================
// BOOKINGS — Sidebar / Filter
// ========================================

.modern-sidebar {
  .b-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
  }
}

.sidebar-content {
  padding: 1.5rem;
}

.modern-form-group {
  margin-bottom: 1.5rem;

  label {
    font-weight: 600;
    color: #334155;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.modern-input {
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;

  &:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
}

.modern-select {
  .vs__dropdown-toggle {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.5rem 1rem;
  }

  &.vs--open .vs__dropdown-toggle {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
}

.modern-btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  i {
    margin-right: 0.5rem;
  }
}

// ========================================
// BOOKINGS — Detail Modal
// ========================================

.booking-detail-modal-wrapper {
  .modal-dialog {
    max-width: 900px !important;
    margin: 0.5rem !important;

    @media (max-width: 768px) {
      max-width: 100% !important;
      margin: 0 !important;
      width: 100% !important;
    }
  }

  .modal-content {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;

    @media (max-width: 768px) {
      border-radius: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex !important;
      flex-direction: column !important;
    }
  }

  .modal-body {
    @media (max-width: 768px) {
      padding: 0 !important;
      overflow-y: auto !important;
      flex: 1 !important;
    }
  }
}

.booking-detail-container {
  background: #ffffff;
  min-height: 500px;

  @media (max-width: 768px) {
    min-height: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.booking-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
  }

  .header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .header-text {
    .booking-title {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: white;
      letter-spacing: -0.5px;
    }

    .booking-id {
      margin: 4px 0 0 0;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }
  }

  .header-actions {
    display: flex;
    gap: 8px;
    z-index: 1;
  }

  .action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;

    &:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    &.pdf-btn:hover {
      background: rgba(239, 68, 68, 0.9);
      border-color: rgba(239, 68, 68, 0.9);
    }

    &.print-btn:hover {
      background: rgba(59, 130, 246, 0.9);
      border-color: rgba(59, 130, 246, 0.9);
    }

    &.close-btn:hover {
      background: rgba(239, 68, 68, 0.9);
      border-color: rgba(239, 68, 68, 0.9);
      transform: rotate(90deg);
    }
  }
}

.booking-content {
  padding: 28px;
  background: #f8f9fc;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);

    &::before {
      transform: scaleX(1);
    }
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #667eea;
    flex-shrink: 0;
  }

  .customer-icon { color: #667eea; }
  .service-icon { color: #f5576c; }
  .price-icon { color: #4facfe; }
  .status-icon { color: #43e97b; }
  .datetime-icon { color: #fa709a; }
  .notes-icon { color: #30cfd0; }
  .reference-icon { color: #8b5cf6; }

  .card-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .card-body {
    .info-value {
      font-size: 16px;
      font-weight: 600;
      color: #1e293b;
      line-height: 1.5;
    }

    .price-value {
      display: flex;
      align-items: baseline;
      gap: 4px;

      .currency-symbol {
        font-size: 18px;
        font-weight: 600;
        color: #64748b;
      }

      .price-amount {
        font-size: 28px;
        font-weight: 700;
        color: #667eea;
        line-height: 1;
      }
    }

    .status-badge-modern {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;

      .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        animation: bookingPulse 2s ease infinite;
      }

      &.pending {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        color: #92400e;

        .status-dot { background: #f59e0b; }
      }

      &.confirmed {
        background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        color: #065f46;

        .status-dot { background: #10b981; }
      }

      &.cancelled {
        background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
        color: #991b1b;

        .status-dot { background: #ef4444; }
      }

      &.completed {
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        color: #1e40af;

        .status-dot { background: #3b82f6; }
      }
    }

    .datetime-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .datetime-item {
      .datetime-label {
        font-size: 11px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
      }

      .datetime-value {
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
      }
    }

    .notes-content {
      font-size: 14px;
      color: #475569;
      line-height: 1.6;
      padding: 12px;
      background: #f8fafc;
      border-radius: 8px;
      border-left: 3px solid #667eea;
    }
  }
}

.datetime-card,
.notes-card {
  grid-column: 1 / -1;
}

@keyframes bookingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

// ========================================
// BOOKINGS — PDF Loading Overlay
// ========================================

.pdf-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bookingFadeIn 0.3s ease;
}

.pdf-loading-content {
  text-align: center;
  background: white;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  animation: bookingSlideUp 0.4s ease;
}

.pdf-spinner-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.pdf-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f1f5f9;
  border-top: 5px solid #667eea;
  border-radius: 50%;
  animation: bookingSpin 1s linear infinite;
  margin: 0 auto;
}

.pdf-loading-title {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.pdf-loading-message {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

@keyframes bookingFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bookingSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bookingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

// ========================================
// BOOKINGS — Print View
// ========================================

.booking-print-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
}

.booking-print-title {
  color: #667eea;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.booking-print-ref {
  color: #64748b;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.booking-print-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.booking-print-info-box {
  background: #f8f9fc;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #667eea;

  &.booking-info {
    border-left-color: #764ba2;
  }
}

.booking-print-section-title {
  margin: 0 0 15px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;

  .booking-print-info-box & {
    color: #667eea;
  }

  .booking-print-info-box.booking-info & {
    color: #764ba2;
  }
}

.booking-print-customer-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.booking-print-info-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
}

.booking-print-service-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.booking-print-service-title {
  color: #1e293b;
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.booking-print-table {
  width: 100%;
  border-collapse: collapse;
}

.booking-print-row {
  border-bottom: 1px solid #f1f5f9;
}

.booking-print-td-label {
  padding: 12px 0;
  font-weight: 600;
  color: #64748b;
  width: 40%;
}

.booking-print-td-value {
  padding: 12px 0;
  color: #1e293b;
  font-weight: 600;
}

.booking-print-price {
  padding: 12px 0;
  color: #667eea;
  font-size: 18px;
  font-weight: 700;
}

.booking-print-status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-print-notes {
  background: #f8f9fc;
  border-left: 4px solid #667eea;
  padding: 20px;
  border-radius: 12px;
}

.booking-print-notes-title {
  color: #667eea;
  margin: 0 0 15px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-print-notes-text {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  white-space: pre-line;
}

// ========================================
// BOOKINGS — Responsive
// ========================================

@media (max-width: 991px) {
  .bookings-page-modern {
    padding: 1rem;

    .control-bar {
      flex-direction: column;
      align-items: stretch;
      padding: 1rem;
    }

    .control-left,
    .control-right {
      width: 100%;
      justify-content: center;
    }

    .control-right {
      flex-direction: column;

      .action-btn {
        width: 100%;
        justify-content: center;
      }
    }
  }
}

@media (max-width: 768px) {
  .bookings-page-modern {
    padding: 0.75rem;

    .page-wrapper {
      max-width: 100%;
    }

    .control-bar {
      padding: 0.875rem;
      border-radius: 12px;
      margin-bottom: 1rem;
    }

    .page-title {
      font-size: 1rem;
    }

    .calendar-card {
      border-radius: 12px;
      padding: 0.75rem;
    }
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-header {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 10;

    .header-content {
      width: 100%;
      gap: 12px;
    }

    .header-icon {
      width: 40px;
      height: 40px;
      font-size: 20px;
      border-radius: 10px;
    }

    .header-text {
      flex: 1;
      min-width: 0;

      .booking-title { font-size: 18px; line-height: 1.3; }
      .booking-id { font-size: 12px; margin-top: 2px; }
    }

    .header-actions {
      width: 100%;
      justify-content: flex-end;
      gap: 6px;
    }

    .action-btn {
      width: 36px;
      height: 36px;
      font-size: 16px;
      border-radius: 8px;
    }
  }

  .booking-content {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
  }

  .info-card {
    padding: 16px;
    border-radius: 12px;

    .card-header {
      gap: 10px;
      margin-bottom: 12px;
      padding-bottom: 10px;
    }

    .card-icon { width: 36px; height: 36px; font-size: 18px; }
    .card-title { font-size: 12px; }

    .card-body {
      .info-value { font-size: 14px; }
      .price-value {
        .currency-symbol { font-size: 16px; }
        .price-amount { font-size: 24px; }
      }
      .status-badge-modern {
        padding: 6px 12px;
        font-size: 11px;
        gap: 6px;

        .status-dot { width: 6px; height: 6px; }
      }
      .datetime-item {
        .datetime-label { font-size: 10px; }
        .datetime-value { font-size: 14px; }
      }
      .notes-content { font-size: 13px; padding: 10px; }
    }
  }
}

@media (max-width: 480px) {
  .bookings-page-modern {
    padding: 0.5rem;
    background: #f5f7fa;

    .control-bar {
      padding: 0.75rem;
      border-radius: 8px;
      margin-bottom: 0.75rem;
    }

    .page-title { font-size: 0.9rem; }

    .control-right {
      gap: 0.5rem;

      .action-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;

        i { font-size: 0.8rem; }
        span { font-size: 0.7rem; }
      }
    }
  }

  .booking-header {
    padding: 12px 16px;

    .header-icon { width: 36px; height: 36px; font-size: 18px; }
    .header-text {
      .booking-title { font-size: 16px; }
      .booking-id { font-size: 11px; }
    }
    .action-btn { width: 32px; height: 32px; font-size: 14px; }
  }

  .booking-content { padding: 12px; }
  .booking-grid { gap: 12px; }

  .info-card {
    padding: 12px;

    .card-header { margin-bottom: 10px; padding-bottom: 8px; }
    .card-icon { width: 32px; height: 32px; font-size: 16px; }
    .card-title { font-size: 11px; }

    .card-body {
      .info-value { font-size: 13px; }
      .price-value {
        .currency-symbol { font-size: 14px; }
        .price-amount { font-size: 20px; }
      }
    }
  }
}
