/* ===========================
   AUTH PAGES STYLES
   My Account, Booking History, Booking Details
   =========================== */

/* ===========================
   MY ACCOUNT PAGE STYLES
   =========================== */

/* Dashboard Styles */
.rts-dashboard-area {
    background: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.rts-dashboard-profile-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid #e8f0f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rts-profile-avatar {
    font-size: 60px;
    color: var(--color-primary, #006b9e);
    margin-bottom: 16px;
}

.rts-profile-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 4px 0;
}

.rts-profile-info p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.rts-profile-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.rts-profile-phone {
    font-size: 13px;
    color: #0b2230;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rts-profile-phone i {
    color: var(--color-primary, #006b9e);
}

/* Dashboard Menu */
.rts-dashboard-menu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8f0f5;
}

.rts-nav-pills-vertical {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rts-dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.rts-dashboard-nav-item:last-child {
    border-bottom: none;
}

.rts-dashboard-nav-item:hover {
    background: #f9fafb;
    color: var(--color-primary, #006b9e);
    padding-left: 20px;
}

.rts-dashboard-nav-item.active {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    color: var(--color-primary, #006b9e);
    border-left: 3px solid var(--color-primary, #006b9e);
    padding-left: 13px;
    font-weight: 600;
}

.rts-dashboard-nav-item i {
    font-size: 16px;
    min-width: 20px;
}

/* Dashboard Card */
.rts-dashboard-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e8f0f5;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-header-custom {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-bottom: 1px solid #e8f0f5;
}

.header-icon {
    font-size: 28px;
    color: var(--color-primary, #006b9e);
    flex-shrink: 0;
}

.card-header-custom h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 4px 0;
}

.card-header-custom p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.card-body-custom {
    padding: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0b2230;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1e5f2;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary, #006b9e);
    box-shadow: 0 0 0 3px rgba(0, 107, 158, 0.1);
}

.form-text {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Alert Styles */
.alert-container {
    margin-bottom: 16px;
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d1fae5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert i {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Password Info */
.password-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 20px;
}

.password-info i {
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 2px;
}

.password-info p {
    font-size: 13px;
    color: #374151;
    margin: 0;
}

/* ===========================
   BOOKING HISTORY PAGE STYLES
   =========================== */

/* Booking History Card Styles */
.rts-bookings-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.rts-booking-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8f0f5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rts-booking-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.rts-booking-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.rts-booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.rts-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.rts-badge-paid {
    background: rgba(16, 185, 129, 0.9);
}

.rts-badge-pending {
    background: rgba(245, 158, 11, 0.9);
}

.rts-booking-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rts-booking-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 6px 0;
}

.rts-package-name {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.rts-booking-details {
    flex: 1;
    margin-bottom: 16px;
}

.rts-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
}

.rts-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rts-label {
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rts-label i {
    color: var(--color-primary, #006b9e);
    font-size: 13px;
}

.rts-value {
    color: #0b2230;
    font-weight: 600;
    text-align: right;
}

.rts-price {
    font-size: 14px;
    color: var(--color-primary, #006b9e);
    font-weight: 700;
}

.rts-booking-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rts-booking-status.rts-status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #92400e;
}

.rts-booking-status.rts-status-confirmed {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.rts-booking-status.rts-status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.rts-booking-status.rts-status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #991b1b;
}

/* Driver Row */
.rts-detail-row.rts-driver-row {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    padding: 12px 0 0 0;
}

.rts-driver-info-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.rts-driver-name-compact {
    font-size: 12px;
    color: #0b2230;
    font-weight: 600;
}

.rts-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.rts-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.rts-status-indicator.rts-status-online {
    background: #d1fae5;
    color: #047857;
}

.rts-status-indicator.rts-status-online .rts-dot {
    background: #10b981;
}

.rts-status-indicator.rts-status-offline {
    background: #f3f4f6;
    color: #6b7280;
}

.rts-status-indicator.rts-status-offline .rts-dot {
    background: #9ca3af;
}

.rts-status-indicator.rts-status-available {
    background: #dbeafe;
    color: #0369a1;
}

.rts-status-indicator.rts-status-available .rts-dot {
    background: #0ea5e9;
}

.rts-status-indicator.rts-status-busy {
    background: #fed7aa;
    color: #92400e;
}

.rts-status-indicator.rts-status-busy .rts-dot {
    background: #f59e0b;
}

/* Booking Actions */
.rts-booking-actions {
    display: flex;
    gap: 8px;
}

/* Empty State */
.rts-empty-state {
    background: white;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #e8f0f5;
}

.rts-empty-state i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.rts-empty-state h5 {
    font-size: 20px;
    color: #0b2230;
    margin: 0 0 8px 0;
}

.rts-empty-state p {
    color: #6b7280;
    margin: 0;
}

/* ===========================
   BOOKING DETAIL PAGE STYLES
   =========================== */

/* Booking Detail Page Styles */
.rts-booking-detail-area {
    background: #f8f9fa;
}

/* Header Section */
.rts-detail-header {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid #e8f0f5;
}

.rts-detail-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.rts-booking-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b2230;
    margin: 0;
}

.rts-booking-id {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.rts-status-container {
    display: flex;
    gap: 12px;
}

.rts-status-paid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.rts-status-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Main Grid Layout */
.rts-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

/* Detail Sections */
.rts-detail-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e8f0f5;
}

.rts-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f7fc;
}

.rts-section-header i {
    font-size: 20px;
    color: var(--color-primary, #006b9e);
}

.rts-section-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2230;
    margin: 0;
}

.rts-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b2230;
    margin-top: 0;
}

/* Section Image & Basic Info */
.rts-section-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.rts-section-basic-info {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    padding: 16px;
    border-radius: 8px;
}

/* Info Grid */
.rts-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rts-info-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.rts-info-item,
.rts-info-box {
    background: white;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e8f0f5;
}

.rts-info-item label,
.rts-info-box label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rts-info-item p,
.rts-info-box p {
    font-size: 15px;
    font-weight: 700;
    color: #0b2230;
    margin: 0;
    line-height: 1.4;
}

.rts-info-box small {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Passenger Summary */
.rts-passenger-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.rts-passenger-box {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border: 2px solid #d1e5f2;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.rts-passenger-count {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary, #006b9e);
}

.rts-passenger-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 8px;
}

.rts-special-requirements {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.rts-special-requirements h5 {
    font-size: 14px;
    font-weight: 700;
    color: #047857;
    margin: 0 0 8px 0;
}

.rts-special-requirements p {
    font-size: 13px;
    color: #059669;
    margin: 0;
}

/* Services & Add-ons */
.rts-services-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.rts-services-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rts-services-group h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rts-services-group h5 i {
    color: var(--color-primary, #006b9e);
    font-size: 14px;
}

.rts-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rts-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary, #006b9e);
}

.rts-service-name {
    font-size: 13px;
    font-weight: 600;
    color: #0b2230;
}

.rts-service-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary, #006b9e);
}

/* Location Grid */
.rts-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rts-location-box {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-radius: 12px;
    border: 1px solid #d1e5f2;
}

.rts-location-icon {
    font-size: 24px;
    color: var(--color-primary, #006b9e);
    flex-shrink: 0;
    margin-top: 2px;
}

.rts-location-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 4px 0;
}

.rts-location-box p {
    font-size: 13px;
    color: #0b2230;
    margin: 0;
    font-weight: 600;
}

.rts-location-box small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Payment Breakdown */
.rts-payment-breakdown {
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    padding: 20px;
    border-radius: 12px;
}

.rts-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    color: #0b2230;
}

.rts-payment-row span:first-child {
    font-weight: 500;
}

.rts-payment-row span:last-child {
    font-weight: 700;
}

.rts-payment-divider {
    height: 1px;
    background: #d1e5f2;
    margin: 12px 0;
}

.rts-payment-total {
    font-size: 14px;
    padding: 12px 0 0 0;
    border-top: 2px solid #d1e5f2;
    margin-top: 12px;
}

.rts-payment-status {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d1e5f2;
}

.rts-payment-status p {
    font-size: 13px;
    color: #0b2230;
    margin: 0;
}

.rts-payment-status strong {
    font-weight: 700;
}

/* Status Grid */
.rts-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rts-status-box {
    padding: 16px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-radius: 8px;
    border: 1px solid #d1e5f2;
}

.rts-status-box label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rts-badge-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: white;
    letter-spacing: 0.5px;
}

.rts-badge-confirmed,
.rts-badge-confirm {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.rts-badge-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.rts-badge-vehicle_assigned {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.rts-badge-ongoing {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.rts-badge-completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.rts-badge-cancelled {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Sidebar */
.rts-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rts-summary-card,
.rts-actions-card,
.rts-driver-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8f0f5;
}

.rts-summary-card h4,
.rts-actions-card h4,
.rts-driver-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rts-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.rts-summary-item:last-child {
    border-bottom: none;
}

.rts-summary-item span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.rts-summary-item strong {
    color: #0b2230;
    font-weight: 700;
}

.rts-summary-total {
    padding: 12px 0 0 0;
    border-top: 2px solid #f0f0f0;
    margin-top: 12px;
    font-size: 14px;
}

.rts-summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 12px 0;
}

/* Action Buttons */
.rts-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Driver Card */
.rts-card-header-with-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.rts-card-header-with-status h4 {
    margin: 0;
    flex: 1;
}

.rts-driver-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.rts-status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.rts-driver-status-badge.rts-status-online {
    background: #d1fae5;
    color: #047857;
}

.rts-driver-status-badge.rts-status-online .rts-status-dot {
    background: #10b981;
}

.rts-driver-status-badge.rts-status-offline {
    background: #f3f4f6;
    color: #6b7280;
}

.rts-driver-status-badge.rts-status-offline .rts-status-dot {
    background: #9ca3af;
    animation: none;
}

.rts-driver-status-badge.rts-status-available {
    background: #dbeafe;
    color: #0369a1;
}

.rts-driver-status-badge.rts-status-available .rts-status-dot {
    background: #0ea5e9;
}

.rts-driver-status-badge.rts-status-busy {
    background: #fed7aa;
    color: #92400e;
}

.rts-driver-status-badge.rts-status-busy .rts-status-dot {
    background: #f59e0b;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rts-driver-info {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f7fc 0%, #e8f0f5 100%);
    border-radius: 8px;
    margin-bottom: 12px;
}

.rts-driver-avatar {
    font-size: 40px;
    color: var(--color-primary, #006b9e);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.rts-driver-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rts-driver-details-content {
    flex: 1;
}

.rts-driver-name {
    font-size: 14px;
    font-weight: 700;
    color: #0b2230;
    margin: 0 0 6px 0;
}

.rts-driver-license,
.rts-driver-rating {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 3px;
}

.rts-driver-license i,
.rts-driver-rating i {
    margin-right: 4px;
    color: var(--color-primary, #006b9e);
}

.rts-driver-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-outline {
    border: 1px solid #e0e7ff;
    background: white;
    color: var(--color-primary, #006b9e);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-outline:hover {
    border-color: var(--color-primary, #006b9e);
    background: #f0f7fc;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .rts-detail-grid {
        grid-template-columns: 1fr;
    }

    .rts-detail-sidebar {
        grid-row: auto;
    }

    .rts-detail-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .rts-info-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .rts-passenger-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .rts-location-grid {
        grid-template-columns: 1fr;
    }

    .rts-status-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-wrap: wrap;
    }

    .btn {
        flex: 1;
        min-width: 100px;
    }

    .card-header-custom {
        gap: 12px;
        padding: 16px;
    }

    .card-body-custom {
        padding: 16px;
    }

    .rts-bookings-grid-container {
        grid-template-columns: 1fr;
    }

    .rts-booking-details {
        font-size: 11px;
    }

    .rts-detail-row {
        padding: 8px 0;
    }

    .rts-booking-actions {
        flex-wrap: wrap;
    }

    .rts-booking-title {
        font-size: 22px;
    }

    .rts-detail-section {
        padding: 16px;
    }

    .rts-info-grid {
        grid-template-columns: 1fr;
    }

    .rts-info-grid-3 {
        grid-template-columns: 1fr;
    }

    .rts-passenger-summary {
        grid-template-columns: 1fr;
    }

    .rts-section-image {
        height: 200px;
    }

    .rts-action-buttons {
        gap: 8px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}
