.otp-container {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 0px;
      padding: 0 20px;
    }

    .otp-input {
      width: 60px;
      height: 60px;
      font-size: 28px;
      text-align: center;
      border: 2px solid #ccc;
      border-radius: 10px;
      outline: none;
      transition: border-color 0.3s ease;
      background-color: #fff;
      caret-color: transparent;
    }

    .otp-input:focus {
      border-color: #007bff;
      box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
    }

    @media (max-width: 400px) {
      .otp-input {
        width: 50px;
        height: 50px;
        font-size: 24px;
      }
    }


/* Add here all your CSS customizations */

/* ---- Misc ---- */
.left {float: left;}
.right {float: right;}
.text-left {text-align: left;}
.text-right {text-align: right;}
.text-center {text-align: center;}
.text-justify {text-align: justify;}

.space-left {margin-left: 10px;}
.space-right {margin-right: 10px;}

.space-top {margin-top: 20px;}
.space-bot {margin-bottom: 20px;}
.space-htop {margin-top: 10px;}
.space-hbot {margin-bottom: 10px;}
.centered{float: none; margin: auto;}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Example to center in viewport */
}


.center-block {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.row
{
    width:  100%;
}
.style_border
{
	background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(5px);  
    
	color: #888;
  	padding: 10px;
	border: 1px solid #F1F1F1;
	border-radius:0px;
 	box-shadow: 0 0 8px #F1F1F1;
 }




/* Color & size swatches */

.color-pickerswatch {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.color-swatch {
  cursor: pointer;
  position: relative;
}

.color-swatch input {
  display: none;
}

.swatchColor {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.color-swatch:hover .swatchColor {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.checkColor {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  display: none;
}

.color-swatch input:checked + .swatchColor {
  border: 3px solid #222;
  box-shadow: 0 0 0 3px white, 0 0 5px rgba(0, 0, 0, 0.3);
}

.color-swatch input:checked + .swatchColor .checkColor {
  display: block;
}

/* Tooltip styling */
.color-swatch::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F1F1F1;
  color: #222;
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.color-swatch:hover::after {
  opacity: 1;
}



/* start of Size Picker Swatch */

.size-pickerswatch {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.size-swatch {
  position: relative;
  cursor: pointer;
}

.size-swatch input {
  display: none;
}

.swatchSize {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #fff;
  color: #333;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.size-swatch:hover .swatchSize {
  border-color: #888;
  transform: scale(1.05);
}

.size-swatch input:checked + .swatchSize {
  border: 2px solid #111;
  background-color: #111;
  color: #fff;
  box-shadow: 0 0 0 3px white, 0 0 4px rgba(0,0,0,0.3);
}

.size-swatch.disabled .swatchSize {
  background-color: #f2f2f2;
  color: #aaa;
  border: 2px dashed #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Tooltip styling */
.size-swatch::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  font-size: 0.95rem;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.size-swatch:hover::after {
  opacity: 1;
}


/* end of Color & size swatches */


  
.style_border
{
	background-color: #fff;
	color: #888;
  	padding: 10px;
	border: 1px solid #F1F1F1;
	border-radius:0px;
 	box-shadow: 0 0 8px #F1F1F1;
 }


.erprow {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.erprow:nth-child(odd) {
  background-color: #f0f4f8; /* Light gray */
}

.erprow:nth-child(even) {
  background-color: #e2e8f0; /* Cool gray-blue */
}

.erprow:hover {
  background-color: #dbeafe; /* Subtle blue highlight on hover */
}

.nice_div {
  background-color: #ffffff;
  border-left: 5px solid #4CAF50; /* green border for highlight */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  padding: 20px;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.nice_div_success {
  background-color: #d1f7d6;
  border-left: 5px solid #4CAF50; /* green border for highlight */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  padding: 20px;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.nice_div_error {
  background-color: #fdecea;
  border-left: 5px solid #b71c1c;  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  padding: 20px;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
    text-align: center;
}

.nice_div_info {
  background-color: #e0f7fa;
  border-left: 5px solid #4CAF50; /* green border for highlight */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  padding: 20px;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.nice_div_alert {
  background-color: #fff3cd;
  border-left: 5px solid #4CAF50; /* green border for highlight */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* soft shadow */
  padding: 20px;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
    
.nice_div:hover, .nice_div_success:hover, .nice_div_error:hover, .nice_div_info:hover {
  transform: scale(1.02);
}



.info-text {
  font-size: 12px;
  color: #6b7280; /* Tailwind gray-500 */
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.nice_header {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  color: #333;
  border-bottom: 2px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nice_line {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  margin: 1rem 0;
  border-radius: 5px;
}

.nice_lineblack {
  border: 0;
  height: 2px;
  background:black;
  margin: 1rem 0;
  border-radius: 5px;
}

.nice_linethick {
  border: none;
  height: 2px;
  background-color: black;
  margin: 2rem 0;
}

.nice_linedotted {
  border: none;
  border-top: 1px dotted black;
  margin: 1rem 0;
}

.highlight {
  background-color: #A0E7E5;
}
