/* Workshop Tabs */
.workshop-tabs {
    display: flex;
    gap: 10px;
    background: #f1f1f1;
    padding: 5px;
    border-radius: 25px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.tab-btn.active {
    background: #1e90ff;
    /* Primary Blue */
    color: white;
    box-shadow: 0 4px 6px rgba(30, 144, 255, 0.2);
}