.asterisphere-site-tabs {
    width: 100%;
    margin: 20px 0;
}

.asterisphere-site-tabs .tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.asterisphere-site-tabs .tab-button {
    padding: 12px 24px;
    background: #cccccc;
    border: 1px solid #ddd;
    border-bottom: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px 5px 0 0;
    position: relative;
    bottom: -2px;
}

.asterisphere-site-tabs .tab-button:hover {
    background: #e8e8e8;
}

.asterisphere-site-tabs .tab-button.active {
    background: white;
    border-bottom: 2px solid white;
    color: #0073aa;
}

.asterisphere-site-tabs .tab-content-wrapper {
    border: 1px solid #ddd;
    border-top: none;
    background: white;
}

.asterisphere-site-tabs .tab-content {
    display: none;
}

.asterisphere-site-tabs .tab-content.active {
    display: block;
}

.asterisphere-site-tabs iframe {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .asterisphere-site-tabs .tab-buttons {
        flex-direction: column;
        border-bottom: none;
    }
    
    .asterisphere-site-tabs .tab-button {
        width: 100%;
        border-radius: 5px;
        border: 1px solid #ddd;
        bottom: 0;
    }
    
    .asterisphere-site-tabs .tab-button.active {
        border: 2px solid #0073aa;
    }
    
    .asterisphere-site-tabs .tab-content-wrapper {
        border: none;
        margin-top: 10px;
    }
}
