.flight-table-container {
max-width: 100%;
overflow-x: auto;
margin: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.table-header {
text-align: center;
margin-bottom: 20px;
color: white;
}
.table-title {
font-size: 24px;
font-weight: bold;
margin: 0 0 5px 0;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.table-subtitle {
font-size: 14px;
opacity: 0.9;
margin: 0;
}
.flight-table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-bottom: 15px;
}
.flight-table th {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: white;
padding: 15px 8px;
text-align: center;
font-weight: 600;
font-size: 14px;
position: sticky;
top: 0;
z-index: 10;
}
.flight-table td {
padding: 12px 8px;
text-align: center;
border-bottom: 1px solid #eee;
font-size: 13px;
transition: background-color 0.2s ease;
}
.flight-table tr:hover td {
background-color: #f8f9ff;
}
.rank-cell {
background: linear-gradient(135deg, #ff6b6b, #feca57);
color: white;
font-weight: bold;
border-radius: 20px;
margin: 2px;
display: inline-block;
padding: 4px 8px;
min-width: 24px;
}
.rank-1 { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.rank-2 { background: linear-gradient(135deg, #ffa726, #ffcc80); }
.rank-3 { background: linear-gradient(135deg, #66bb6a, #a5d6a7); }
.price-cell {
font-weight: 600;
color: #2c3e50;
}
.total-price {
background: linear-gradient(135deg, #e74c3c, #c0392b);
color: white;
font-weight: bold;
border-radius: 6px;
padding: 4px 8px;
}
.date-cell {
font-weight: 500;
color: #555;
}
.days-cell {
background: #e8f4fd;
color: #1976d2;
font-weight: 600;
border-radius: 4px;
}
.table-notes {
background: rgba(255,255,255,0.15);
border-radius: 8px;
padding: 15px;
color: white;
font-size: 12px;
line-height: 1.6;
backdrop-filter: blur(10px);
}
.table-notes p {
margin: 5px 0;
}
.table-notes a {
color: #ffd700;
text-decoration: none;
font-weight: 500;
}
.table-notes a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.table-title {
font-size: 20px;
}
.flight-table th,
.flight-table td {
padding: 10px 4px;
font-size: 12px;
}
.flight-table-container {
padding: 15px;
}
}
@media (max-width: 480px) {
.table-title {
font-size: 18px;
}
.flight-table th,
.flight-table td {
padding: 8px 2px;
font-size: 11px;
}
.rank-cell {
padding: 2px 4px;
font-size: 10px;
}
} .flight-table-container::-webkit-scrollbar {
height: 8px;
}
.flight-table-container::-webkit-scrollbar-track {
background: rgba(255,255,255,0.1);
border-radius: 4px;
}
.flight-table-container::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.3);
border-radius: 4px;
}
.flight-table-container::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.5);
} .entry-card .boundless-image img  {
border-radius: 20px;
overflow: hidden;
}