:root {
    --primary-purple: #6200EE;
    --inactive-tab-color: rgba(255, 255, 255, 0.7);
}

body {
    background-color: #f8f9fa; /* A light grey background for the content area */
}

/* Custom Purple Background */
.bg-custom-purple {
    background-color: var(--primary-purple);
}

/* Header Adjustments */
.navbar-brand {
    /* Prevents title from being pushed by icons on small screens */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-dark-outline {
    color: white; /* Color for dropdown toggles */
}
.btn-dark-outline:hover {
    color: white;
}

/* Navigation Tabs Styling */
.nav-tabs {
    border-bottom: none; /* Remove default Bootstrap bottom border */
    background-color: var(--primary-purple);
}

.nav-tabs .nav-link {
    border: none; /* Remove all borders from tabs */
    border-radius: 0;
    color: var(--inactive-tab-color);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-tabs .nav-link:hover {
    color: white;
}

/* Active Tab Styling */
.nav-tabs .nav-link.active {
    background-color: transparent; /* No background color change */
    color: white;
    border-bottom: 3px solid white; /* White underline for active tab */
}

/* Content Section Titles */
.section-title {
    color: #6c757d; /* Bootstrap's default 'secondary' color */
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Card and Table Styling */
.trip-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.trip-card .card-header {
    background-color: #f8f9fa;
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
}

.trip-card .table {
    font-size: 1rem;
}

.trip-card .table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}

/* Mimics the divider line from the original image */
.trip-card .table tr:not(:last-child) {
    border-bottom: 1px solid #f1f3f5;
}