body {
    background-color: #f8f9fa;
}

.table {
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.table thead th {
    border-top: none;
    background-color: #343a40;
    color: white;
    border-color: #454d55;
}

.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.badge {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.9em;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Itinerary Timeline Styles */
.timeline .card {
    border-left: 4px solid #0d6efd;
    margin-left: 20px;
    position: relative;
}

.timeline .card::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0d6efd;
    left: -10px;
    top: 20px;
}