24 lines
388 B
CSS
24 lines
388 B
CSS
.trip-timeline {
|
|
width: 100%;
|
|
}
|
|
|
|
.trip-timeline h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
color: var(--text-primary);
|
|
font-family: var(--font-secondary);
|
|
}
|
|
|
|
.timeline-days-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.timeline-loading {
|
|
padding: 2rem;
|
|
color: var(--text-muted);
|
|
text-align: center;
|
|
font-size: 1.1rem;
|
|
}
|