/**
 * Reusable Tab Control Styles
 * For use across multiple demos
 */

.info-tabs {
    border: 1px solid #ddd;
    border-radius: 0;
    background: white;
    margin-bottom: 20px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 0;
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    border-radius: 0;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #333;
}

.tab-btn.active {
    background: white;
    color: #333;
    border-bottom: 2px solid #007bff;
    font-weight: 600;
}

.tab-content {
    padding: 20px;
}

.tab-panel {
    display: none;
    line-height: 1.5;
}

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