/* Responsive adjustments for report page (preserve horizontal layout) */
@media (max-width: 992px) {
    .report-header {
        padding: 1.2rem 1rem !important;
        gap: 1rem !important;
    }
    .report-header-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.5rem !important;
    }
    .report-title {
        font-size: 1.3rem !important;
    }
    .report-subtitle {
        font-size: 1rem !important;
    }
    .booking-details-list {
        gap: 1rem !important;
    }
    .booking-details-list > div {
        padding: 1rem 1rem !important;
        font-size: 0.98rem !important;
        min-width: 160px;
    }
}
@media (max-width: 768px) {
    .container, .booking-hero-section .container {
        padding-left: 6px;
        padding-right: 6px;
    }
    .report-header {
        padding: 1rem 0.5rem !important;
        gap: 0.7rem !important;
    }
    .report-header-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
    }
    .report-title {
        font-size: 1.05rem !important;
        letter-spacing: 0.1px !important;
    }
    .report-subtitle {
        font-size: 0.92rem !important;
    }
    .report-card {
        padding: 0.5rem 0.1rem !important;
        margin-bottom: 1rem !important;
    }
    .booking-details-list {
        gap: 0.5rem !important;
        flex-wrap: wrap;
    }
    .booking-details-list > div {
        flex: 1 1 100px;
        min-width: 120px;
        padding: 0.6rem 0.5rem !important;
        font-size: 0.92rem !important;
        margin-bottom: 0.3rem;
    }
    .report-section-title {
        font-size: 0.98rem !important;
        gap: 0.3rem !important;
    }
    .report-section-title span {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.8rem !important;
    }
    .timeline {
        margin: 0.7rem 0 0.7rem 0.7rem !important;
        gap: 0.7rem !important;
        padding-left: 0.5rem !important;
    }
    .timeline::before {
        left: 12px !important;
        width: 3px !important;
    }
    .timeline-step {
        gap: 0.3rem !important;
        min-height: 30px !important;
    }
    .timeline-icons {
        margin-top: 0 !important;
    }
    .step-circle {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
    }
    .timeline-content {
        padding: 0.3rem 0.5rem !important;
        min-width: 60px !important;
        font-size: 0.82rem !important;
    }
    .timeline-title {
        font-size: 0.82rem !important;
    }
}

/* Main card styling */
.report-card {
    background: linear-gradient(135deg, #f8fafc 60%, #e3f0ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    /* padding: 2rem; */
    margin-bottom: 2rem;
    position: relative;
}

/* Header */
.report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.report-header-icon {
    background: #0078d4;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.12);
}
.report-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0078d4;
    margin-bottom: 0;
}
.report-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Section titles */
.report-section-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #096c58;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Table styling */
.report-details-table th {
    background: #e3f0ff;
    color: #0078d4;
    font-weight: 500;
    border: none;
}
.report-details-table td {
    background: #fff;
    border: none;
}

/* Service badge */
.badge.bg-primary {
    background: linear-gradient(90deg, #0078d4 70%, #25d366 100%);
    font-size: 1rem;
    padding: 0.5em 1em;
    border-radius: 1em;
    margin-bottom: 0.2em;
}

/* Timeline styling */
.timeline {
    position: relative;
    margin: 2rem 0 2rem 2rem;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #25d366 0%, #0078d4 100%);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.18;
}
.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    min-height: 70px;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.timeline-icons {
    position: relative;
    z-index: 1;
    margin-top: 0.2rem;
    left:-5px;
    top:-3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f0ff 60%, #f8fafc 100%);
    border: 5px solid #e3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0078d4;
    box-shadow: 0 4px 16px rgba(0,120,212,0.10);
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.step-circle.checked {
    background: linear-gradient(135deg, #25d366 60%, #0078d4 100%);
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18);
}
.timeline-step.active .step-circle {
    border-color: #ffe066;
    background: linear-gradient(135deg, #fffbe6 60%, #ffe066 100%);
    color: #ff6f61;
    box-shadow: 0 4px 16px rgba(255,224,102,0.12);
}
.step-circle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,120,212,0.06);
    z-index: -1;
    opacity: 0.5;
}
.timeline-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 0.7rem;
    min-width: 280px;
    border-left: 5px solid #e3f0ff;
    position: relative;
    /* right: -25px; */
    transition: border-color 0.2s, background 0.2s;
}
.timeline-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 0.3rem;
    color: #0078d4;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,120,212,0.07);
}
.timeline-step.completed .timeline-title {
    color: #25d366;
    text-shadow: 0 1px 2px rgba(37,211,102,0.10);
}
.timeline-step.active .timeline-title {
    color: #ff6f61;
    text-shadow: 0 1px 2px rgba(255,111,97,0.10);
}
.timeline-desc {
    color: #555;
    font-size: 1.02rem;
    margin-bottom: 0;
    opacity: 0.88;
}
.timeline-step.completed .timeline-content {
    border-left: 5px solid #25d366;
    background: #e3f0ff;
}
.timeline-step.active .timeline-content {
    border-left: 5px solid #ffe066;
    background: #fffbe6;
}
.timeline-step:not(.completed):not(.active) .timeline-content {
    border-left: 5px solid #e3f0ff;
    background: #f8fafc;
}

/* Download button */
.download-btn {
    background: linear-gradient(90deg, #0078d4 70%, #25d366 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 2em;
    padding: 0.75em 2em;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.12);
    transition: background 0.2s;
    margin-top: 1.5rem;
    display: inline-block;
}
.download-btn:hover {
    background: linear-gradient(90deg, #25d366 70%, #0078d4 100%);
    color: #fff;
}

/* Circle step styling for timeline */
.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e3f0ff;
    border: 3px solid #0078d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0078d4;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.step-circle.checked {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.timeline-step.active .step-circle {
    border-color: #ffe066;
    background: #fffbe6;
    color: #ff6f61;
}

