.user-habit-container {
  display: flex;
  background-color: #d4a6ab;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  padding: 15px 12px;
  margin: auto;
  gap: 15px;
  flex-direction: column;
  justify-content: space-between;

.user-habit-voucher {
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);


  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.29px;
  height: 20px; 
  cursor: pointer;
  text-overflow: ellipsis;
  .text {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #06182CCC;
  }
  
}
.user-habit-voucher:hover .text {
    animation: scroll-left 3s linear 1;
  }
  .user-habit-voucher .scroll-active{
    animation: scroll-left 3s linear 1;
  }
@keyframes scroll-left {
    from {
      overflow: visible;
      transform: translateX(0);
    }
    to {
      overflow: visible;
      transform: translateX(-100%);
    }
  }


  .circle-progress {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .button-streaks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }

  .icon-text {
    display: flex;
    @media (max-width: 374px) {
      flex-direction: column;
      white-space:nowrap;
      gap:5px
    }
  }

  .details-text{
    font-size: 14px;
    font-weight: 500;
    line-height: 17.84px;
   
  }

  .go-button {
    background-color: black;
    color: #fff;
    width: 60px;
    height: 26px;
    padding: 2.5px 8px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #333;
    }
  }

}