/* Horizontal tabs for portfolio */
.tabbed-set {
    display: flex;
    flex-direction: column;
}

.tabbed-labels {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--md-primary-fg-color);
    margin-bottom: 1rem;
}

.tabbed-labels > label {
    flex: 0 0 auto;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tabbed-labels > label:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.tabbed-set > input:checked + label {
    border-bottom-color: var(--md-primary-fg-color);
    font-weight: bold;
}