/* Travel page specific styles */

.travel-header {
    margin-bottom: 40px;
    position: relative;
}

.travel-cover {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center 50%;
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.travel-title {
    text-align: center;
    margin-bottom: 30px;
}

.travel-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    filter: sepia(1) hue-rotate(15deg) saturate(0.8);
}

.travel-title h2 {
    font-size: 32px;
    font-weight: normal;
    margin: 10px 0;
    color: #000;
}

.travel-subtitle {
    font-style: italic;
    color: #999;
    font-size: 16px;
}

.travel-content {
    margin-top: 40px;
}

.travel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.travel-table thead {
    background: rgba(0, 0, 0, 0.03);
}

.travel-table th {
    text-align: left;
    padding: 12px 8px;
    font-weight: normal;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.travel-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.travel-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

.trip-name {
    font-weight: 500;
    color: #000;
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 4px;
    margin-bottom: 2px;
    background: rgba(0, 0, 0, 0.07);
    color: #333;
}

.tag-green {
    background: rgba(0, 135, 107, 0.15);
    color: #00875a;
}

.tag-yellow {
    background: rgba(255, 196, 0, 0.15);
    color: #946800;
}

.tag-orange {
    background: rgba(255, 138, 0, 0.15);
    color: #c25100;
}

.tag-red {
    background: rgba(255, 66, 66, 0.15);
    color: #bf2600;
}

.tag-blue {
    background: rgba(0, 101, 255, 0.15);
    color: #0052cc;
}

.tag-purple {
    background: rgba(146, 109, 219, 0.15);
    color: #5243aa;
}

.tag-pink {
    background: rgba(234, 82, 151, 0.15);
    color: #c01968;
}

.tag-gray {
    background: rgba(149, 149, 149, 0.15);
    color: #5e6c84;
}

.tag-brown {
    background: rgba(133, 76, 29, 0.15);
    color: #5c461f;
}

.city {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 2px;
    margin-right: 4px;
    margin-bottom: 2px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .travel-table {
        font-size: 12px;
    }
    
    .travel-table th,
    .travel-table td {
        padding: 8px 4px;
    }
    
    .travel-table th:nth-child(5),
    .travel-table td:nth-child(5) {
        display: none;
    }
}

@media (max-width: 600px) {
    .travel-cover {
        height: 150px;
    }
    
    .travel-table th:nth-child(3),
    .travel-table td:nth-child(3),
    .travel-table th:nth-child(6),
    .travel-table td:nth-child(6) {
        display: none;
    }
    
    .travel-table {
        font-size: 11px;
    }
}