.tab-container {
    width: fit-content;
    height: 100%;
    padding: 8px;
    background: white;
    overflow: hidden;
    border-radius: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex;
}

.tab-item {
    height: 56px;
    padding-left: 20px;
    padding-right: 24px;
    background: #F7F7F7;
    overflow: hidden;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: #E8E8E8;
}

.tab-item.active {
    background: #0E51A0;
}

.tab-content {
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
}

.tab-text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    word-wrap: break-word;
    color: black;
}

.tab-item.active .tab-text {
    color: white;
}

@media (max-width: 600px) {
    .tab-container {
        gap: 4px;
    }
    .tab-item {
        padding-left: 8px;
        padding-right: 12px;
        height:30px;
    }
} 