
/* Simple Composite Tabs CSS */
.composite-tabs {
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.composite-tabs-heading {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tabs-nav .tab {
    padding: 10px 15px;
    cursor: pointer;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f8f8f8;
    border-radius: 4px 4px 0 0;
}

.tabs-nav .tab.active {
    background: white;
    border-bottom: 1px solid white;
    margin-bottom: -1px;
    color: #0073aa;
}

.tab-panel {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0073aa;
}

.tab-panel .description {
    margin-bottom: 20px;
}

.options-list {
    margin-top: 20px;
}

.options-list h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.option-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.option-item:last-child {
    border-bottom: none;
}

.option-title {
    font-weight: bold;
}

.option-price {
    color: #0073aa;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tabs-nav .tab {
        margin-bottom: 5px;
    }
}
