/* Modern Trip Tabs Navigation Styles */
.trip-tabs-container {
    position: sticky;
    top: 70px;
    z-index: 40;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.trip-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.trip-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.trip-tab {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    font-weight: 500;
    color: #4b5563;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-tab:hover {
    color: #ff7b00;
    background-color: rgba(255, 123, 0, 0.05);
}

.trip-tab.active {
    color: #ff7b00;
    border-bottom-color: #ff7b00;
    background-color: rgba(255, 123, 0, 0.05);
}

.trip-tab i {
    font-size: 1.1rem;
}

/* Progress indicator */
.trip-progress {
    height: 3px;
    background-color: #ff7b00;
    width: 0;
    transition: width 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trip-tab {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Animation for tab transitions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.trip-section {
    animation: fadeIn 0.5s ease;
}

/* Modern section styling */
.trip-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trip-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 123, 0, 0.2);
}