.text-title-xl {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
}

.text-title-lg {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.text-title-md {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;

}

.text-title-sm {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;

}

.text-subtitle {
    font-size: 16px;
    line-height: 1.5;

}

.text-caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;

}

.text-body-lg {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.text-body-md {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.text-body-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

}

.text-body-xs {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;

}


.text-weight-medium{
  font-weight: 500;
}

.text-weight-bold{
  font-weight: 700;
}


.text-color-default {
    color: #1f2937;
}


.text-color-primary {
    color: #3b82f6;
}
.text-color-secondary {
    color: #4b5563
}

.text-color-success {
    color: #16a34a;
}

.text-color-warning {
    color: #f97316;
}

.text-color-error {
    color: #dc2626;
}


.text-color-on-dark {
  color: #ffffff;
}

.text-color-on-dark-secondary {
  color: rgb(255, 255, 255);
}

.text-color-on-dark-muted {
  color: rgba(255, 255, 255, 0.6);
}



.gradient-text {
  background: linear-gradient(90deg, #722ed1 0%, #d3adf7 50%, #2f54eb 100%);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
  -webkit-animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
