    .card-min {
		padding: 8px !important; 
		border-radius: 50px; 
		padding-left: 16px !important;
		}

    .info-box {
      font-size: 13px;
      display: flex;
      align-items: center;
      flex: 1;
	   
	   text-align: left;
    }

    .info-box img {
      width: 24px;
      height: 24px;
      margin-right: 8px;
    }

    .info-title {
      font-weight: bold;
      display: block;
    }
	
	.gray-color { color: #8A8A8A; }

    .fo-text {
      font-weight: 800;
     color: var(--text);
     font-size: 1.65rem;
      margin-top: 10px;
     }
	 .mertek {
		  font-weight: 300;
		  font-size: 0.85rem;
	 }

	div#overlayText1, div#overlayText2 {
		width: 150px;
		height: 100px;
		position: absolute;
		overflow: hidden;
		font-size: 12px;
		font-weight: 600;
		color: var(--text);
		line-height: 1.2;
	}
	
	
	
	
	
	
	.tabs {
  position: relative;
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  margin-top: -15px;  
  padding: 5px 0px;  
  cursor: pointer;
}

.tab {
  padding: 0.5rem 0;
  position: relative;
  color: var(--text);
  transition: color 0.3s;
  width: 25%;
  text-align: center;
}

.tab.active {
  color: var(--primary);
}

.tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(0);
}

.tab-content-container {
  position: relative;
  overflow: hidden;
  min-height: 100px;
  height: 250px;
}

.tab-content {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  position: absolute;
}

.tab-content.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 1;
}

/* Irány szerinti animációk */
.tab-content.slide-left-in {
  transform: translateX(100%);
}

.tab-content.slide-right-in {
  transform: translateX(-100%);
}

.tab-content.slide-left-out {
  transform: translateX(100%);
  opacity: 0;
}

.tab-content.slide-right-out {
  transform: translateX(-100%);
  opacity: 0;
}

.userbox h3, .userbox p {
  line-height: 1.2;
  padding: 0px;
  margin: 0px 5px ;
  
}


    @media (max-width: 600px) {
      .box-container {
        flex-direction: column;
        gap: 15px;
      }
    }