| 1 |
/* Capacity Display Styles */ |
| 2 |
.yatra-card-tour-meta { |
| 3 |
display: flex; |
| 4 |
align-items: center; |
| 5 |
flex-wrap: wrap; |
| 6 |
gap: 8px; |
| 7 |
margin-top: 4px; |
| 8 |
} |
| 9 |
|
| 10 |
.yatra-card-tour-capacity { |
| 11 |
display: inline-flex; |
| 12 |
align-items: center; |
| 13 |
font-size: 13px; |
| 14 |
color: #4a5568; |
| 15 |
background-color: #f7fafc; |
| 16 |
padding: 2px 8px; |
| 17 |
border-radius: 4px; |
| 18 |
font-weight: 500; |
| 19 |
} |
| 20 |
|
| 21 |
.yatra-available-spots { |
| 22 |
font-weight: 600; |
| 23 |
color: #2d3748; |
| 24 |
} |
| 25 |
|
| 26 |
/* For limited availability */ |
| 27 |
.yatra-availability-card.limited .yatra-card-tour-capacity { |
| 28 |
background-color: #fff5f5; |
| 29 |
color: #c53030; |
| 30 |
} |
| 31 |
|
| 32 |
.yatra-availability-card.limited .yatra-available-spots { |
| 33 |
color: #9b2c2c; |
| 34 |
} |
| 35 |
|
| 36 |
/* For full departures */ |
| 37 |
.yatra-availability-card.full .yatra-card-tour-capacity { |
| 38 |
background-color: #f8f9fa; |
| 39 |
color: #718096; |
| 40 |
text-decoration: line-through; |
| 41 |
} |
| 42 |
|
| 43 |
/* Responsive adjustments */ |
| 44 |
@media (max-width: 768px) { |
| 45 |
.yatra-card-tour-meta { |
| 46 |
flex-direction: column; |
| 47 |
align-items: flex-start; |
| 48 |
gap: 4px; |
| 49 |
} |
| 50 |
|
| 51 |
.yatra-card-tour-separator { |
| 52 |
display: none; |
| 53 |
} |
| 54 |
} |
| 55 |
|