
.head-head-tab-container {
    display: inline-flex;
    background-color: hsl(220 14.3% 95.9%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: .25rem;
    font-size: 1rem;
}

.head-tab {
    padding: .25rem .75rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
    line-height: 1.25rem;
    font-weight: 500;
}

.head-tab.active {
    background-color: #fff;
    font-weight: bold;
    color: var(--orange);
    margin: 0;
    border-radius: calc(0.5rem - 2px);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

.head-tab:not(.active) {
    /*background-color: #f0f0f0;*/
    color: #666;
}

.head-tab:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.head-tab:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}