/* GEEO Optional Onsite Activities - Frontend Styles */

.geeo-oa-tabs-container {
    margin: 0;
    padding: 0;
}

.geeo-oa-tabs-container * {
    margin: 0;
    padding: 0;
}

/* Tab Navigation */
.geeo-oa-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 -1px 0;
    padding: 0;
    border-bottom: 3px solid #1063a6;
}

.geeo-oa-tab-button {
    background: #fff;
    border: 2px solid #ddd;
    border-bottom: none;
    padding: 12px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
    position: relative;
    bottom: -2px;
}

.geeo-oa-tab-button:hover {
    background: #f5f5f5;
    color: #1063a6;
}

.geeo-oa-tab-button.active {
    background: #1063a6;
    color: #fff;
    border-color: #1063a6;
    border-bottom: 3px solid #1063a6;
    font-weight: 700;
}

/* Tab Content */
.geeo-oa-tab-content {
    display: none;
    padding: 20px;
    margin: 0;
    background: #fff;
    border: 3px solid #1063a6;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.geeo-oa-tab-content.active {
    display: block;
}

/* Location Header */
.geeo-oa-location-header {
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1063a6;
    text-transform: uppercase;
    border-bottom: 2px solid #1063a6;
}

/* Activities List */
.geeo-oa-activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.geeo-oa-activity-item {
    margin: 0 0 20px 0;
    padding: 0;
}

.geeo-oa-activity-item:last-child {
    margin-bottom: 0;
}

/* Activity Name and Price */
.geeo-oa-activity-title {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.4;
}

.geeo-oa-activity-name {
    font-weight: 700;
    color: #333;
}

.geeo-oa-activity-price {
    color: #666;
    font-weight: 400;
}

/* Activity Description */
.geeo-oa-activity-description {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.geeo-oa-activity-description.optional {
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .geeo-oa-tab-nav {
        flex-direction: column;
        border-bottom: 3px solid #1063a6;
    }
    
    .geeo-oa-tab-button {
        border-radius: 4px;
        border: 2px solid #ddd;
        bottom: 0;
        margin-bottom: 5px;
    }
    
    .geeo-oa-tab-button.active {
        border: 3px solid #1063a6;
    }
    
    .geeo-oa-tab-content {
        border-top: 3px solid #1063a6;
        border-radius: 4px;
    }
    
    .geeo-oa-location-header {
        font-size: 18px;
    }
    
    .geeo-oa-activity-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .geeo-oa-tab-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .geeo-oa-tab-content {
        padding: 15px;
    }
    
    .geeo-oa-location-header {
        font-size: 16px;
    }
    
    .geeo-oa-activity-title {
        font-size: 14px;
    }
    
    .geeo-oa-activity-description {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .geeo-oa-tab-nav {
        display: none;
    }
    
    .geeo-oa-tab-content {
        display: block !important;
        page-break-inside: avoid;
        border: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .geeo-oa-location-header {
        page-break-after: avoid;
    }
    
    .geeo-oa-activity-item {
        page-break-inside: avoid;
    }
}
