.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.popup {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-left: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 300px;
}

.popup button {
  color: #ffffff;
  border-radius: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.popup button:hover {
  background-color: #09294C;
  filter: none;
}

.close-btn {
  background: red;
}

.send-btn {
  background-color: #21E8AA;
}
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding-top: 40px;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 10px 20px;
  font-size: 18px;
  color: #333;
}

.sidebar ul li:hover {
  background: linear-gradient(135deg, #21E8AA, #a0ffe1, #ffffff);
  cursor: pointer;
}

/* Estilo para el Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #09294C;
}

.navbar .logo img {
  width: 200px;
  height: auto;
}

.navbar .menu {
  display: flex;
  gap: 20px;
}

.navbar .menu a {
  text-decoration: none;
  color: #09294C;
  font-size: 16px;
}

.navbar .menu a:hover {
  text-decoration: underline;
}

.navbar h5 {
  color: #A1A1A1;
}

.navbar a h5 {
  color: #A1A1A1;
}

.navbar a h5:hover {
  background: linear-gradient(135deg, #21E8AA, #a0ffe1, #ffffff);
  cursor: pointer;
  border-radius: 2px;
}

/* Estilo para el contenido */
.content {
  margin-left: 260px;
  margin-top: 60px;
  padding: 20px;
  background-color: #f5f5f5;
  min-height: 100vh;
}


:root {
    --gray-offset: rgba(0, 0, 0, 0.03);
    --gray-border: rgba(0, 0, 0, 0.15);
    --gray-light: rgba(0, 0, 0, 0.4);
    --gray-mid: rgba(0, 0, 0, 0.7);
    --gray-dark: rgba(0, 0, 0, 0.9);
    --green-light: #09294C;
    --green-mid: #09294C;
    --green-dark: #09294C;
    --body-color: var(--gray-mid);
    --headline-color: var(--gray-dark);
    --accent-color: #09294C;
    --body-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 6px;
  }
  
  /* Base */
  html {
    box-sizing: border-box;
  }
  * {
    box-sizing: inherit;
  }
  body {
    background-color: var(--green-dark);
    font-family: var(--body-font-family);
    font-size: 16px;
    color: var(--body-color);
    -webkit-font-smoothing: antialiased;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--body-color);
    margin-top: 2px;
    margin-bottom: 4px;
  }
  h1 {
    font-size: 27px;
    color: var(--headline-color);
  }
  h4 {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-light);
  }
  
  /* Layout */
/* Estilos generales para las alertas */
.alert {
  position: fixed; /* Hacer que el mensaje sea fijo en la pantalla */
  top: 12%; /* Centramos el mensaje verticalmente */
  left: 50%; /* Centramos el mensaje horizontalmente */
  transform: translate(-50%, -50%); /* Ajustamos el centro exacto del mensaje */
  padding: 15px;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centra el contenido horizontalmente */
  text-align: center; /* Asegura que el texto esté centrado */
  z-index: 9999; /* Asegura que el mensaje esté encima de otros elementos */
  max-width: 400px; /* Limita el ancho del mensaje */
  width: 100%;
  box-sizing: border-box;
}

/* Estilos para el mensaje de éxito */
.alert-success {
  background-color: rgba(33, 232, 170, 0.5); /* Fondo verde transparente */
  color: #ffffff; /* Texto oscuro para contraste */
  text-align: center;
  border: 1px solid rgba(33, 232, 170, 0.5); /* Borde verde transparente */
}

/* Estilos para el mensaje de error */
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Estilo para el botón de cerrar */
.alert .close {
  position: fixed; /* Hacer que el mensaje sea fijo en la pantalla */
  top: 0%; /* Centramos el mensaje verticalmente */
  left: 90%; /* Centramos el mensaje horizontalmente */
  background: none;
  border: none;
  width: 5px;
  height: 10%;
  color: inherit;
  cursor: pointer;
  display: flex; /* Usamos flexbox para alinear el texto */
  justify-content: center; /* Centra el texto horizontalmente */
  align-items: center; /* Centra el texto verticalmente */
  font-size: 14px; /* Ajusta el tamaño de fuente si es necesario */
}

/* Efecto de hover para el botón de cerrar */
.alert .close:hover {
  color: #333;
}

/* Animación para las alertas */
.alert {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

  .sr-root {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-width: 320px;
    height: auto;
    min-height: 100vh;
    padding: 48px 20px;
  }
  .sr-header {
    margin-top: 64px;
    margin-bottom: 32px;
  }
  .sr-payment-summary {
    margin-bottom: 20px;
    text-align: center;
  }
  .sr-main,
  .sr-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .sr-main {
    width: 100%;
  }
  .sr-content {
    display: none;
    padding-left: 48px;
  }
  .sr-header__logo {
    background-image: var(--logo-image);
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
  }
  .sr-premium__logo {
    background-image: var(--premium-image);
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
  }
  .sr-legal-text {
    color: var(--gray-light);
    text-align: center;
    font-size: 13px;
    line-height: 17px;
    margin-top: 12px;
  }
  .sr-field-error {
    color: var(--accent-color);
    text-align: left;
    font-size: 13px;
    line-height: 17px;
    margin-top: 12px;
  }
  
  /* Form */
  .sr-form-row {
    margin: 16px 0;
  }
  label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
  }
  
  /* Inputs */
  .sr-input,
  .sr-select,
  input[type="text"],
  input[type="number"] {
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 5px 12px;
    height: 44px;
    width: 100%;
    transition: box-shadow 0.2s ease;
    background: white;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #09294C;
  }
  .sr-input:focus,
  input[type="text"]:focus,
  button:focus,
  .focused {
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
      0 0 0 4px rgba(50, 151, 211, 0.3);
    outline: none;
    z-index: 9;
  }
  .sr-input::placeholder,
  input[type="text"]::placeholder,
  input[type="number"]::placeholder {
    color: var(--gray-light);
  }
  
  /* Checkbox */
  .sr-checkbox-label {
    position: relative;
    cursor: pointer;
  }
  
  .sr-checkbox-label input {
    opacity: 0;
    margin-right: 6px;
  }
  
  .sr-checkbox-label .sr-checkbox-check {
    position: absolute;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: white;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .sr-checkbox-label input:focus ~ .sr-checkbox-check {
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
      0 0 0 4px rgba(50, 151, 211, 0.3);
    outline: none;
  }
  
  .sr-checkbox-label input:checked ~ .sr-checkbox-check {
    background-color: var(--accent-color);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: -1px -1px;
  }
  
  /* Select */
  .sr-select {
    display: block;
    height: 44px;
    margin: 0;
    background-repeat: no-repeat, repeat;
    background-position: right 12px top 50%, 0 0;
    background-size: 0.65em auto, 100%;
  }
  .sr-select::-ms-expand {
    display: none;
  }
  .sr-select:hover {
    cursor: pointer;
  }
  .sr-select:focus {
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
      0 0 0 4px rgba(50, 151, 211, 0.3);
    outline: none;
  }
  .sr-select option {
    font-weight: 400;
  }
  .sr-select:invalid {
    color: var(--gray-light);
    background-opacity: 0.4;
  }
  
  /* Combo inputs */
  .sr-combo-inputs {
    display: flex;
    flex-direction: column;
  }
  .sr-combo-inputs input,
  .sr-combo-inputs .sr-select {
    border-radius: 0;
    border-bottom: 0;
  }
  .sr-combo-inputs > input:first-child,
  .sr-combo-inputs > .sr-select:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .sr-combo-inputs > input:last-child,
  .sr-combo-inputs > .sr-select:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: 1px solid var(--gray-border);
  }
  .sr-combo-inputs > .sr-combo-inputs-row:last-child input:first-child {
    border-radius: 0 0 0 var(--radius);
    border-bottom: 1px solid var(--gray-border);
  }
  .sr-combo-inputs > .sr-combo-inputs-row:last-child input:last-child {
    border-radius: 0 0 var(--radius) 0;
    border-bottom: 1px solid var(--gray-border);
  }
  .sr-combo-inputs > .sr-combo-inputs-row:first-child input:first-child {
    border-radius: var(--radius) 0 0 0;
  }
  .sr-combo-inputs > .sr-combo-inputs-row:first-child input:last-child {
    border-radius: 0 var(--radius) 0 0;
  }
  .sr-combo-inputs > .sr-combo-inputs-row:first-child input:only-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .sr-combo-inputs-row {
    width: 100%;
    display: flex;
  }
  
  .sr-combo-inputs-row > input {
    width: 100%;
    border-radius: 0;
  }
  
  .sr-combo-inputs-row > input:first-child:not(:only-child) {
    border-right: 0;
  }
  
  .sr-combo-inputs-row:not(:first-of-type) .sr-input {
    border-radius: 0 0 var(--radius) var(--radius);
  }
  
  /* Buttons and links */
  button {
    background: #21E8AA;
    border-radius: var(--radius);
    color: #21E8AA;
    border: 0;
    padding: 12px 16px;
    margin-top: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
  }
  button:hover {
    filter: contrast(115%);
  }
  button:active {
    transform: translateY(0px) scale(0.98);
    filter: brightness(0.9);
  }
  button:disabled {
    opacity: 0.5;
    cursor: none;
  }
  
  .sr-payment-form button,
  .fullwidth {
    width: 100%;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  a:hover {
    filter: brightness(0.8);
  }
  
  a:active {
    filter: brightness(0.5);
  }
  
  /* Code block */
  .sr-callout {
    background: var(--gray-offset);
    padding: 12px;
    border-radius: var(--radius);
    max-height: 200px;
    overflow: auto;
  }
  code,
  pre {
    font-family: "SF Mono", "IBM Plex Mono", "Menlo", monospace;
    font-size: 12px;
  }
  
  /* Stripe Element placeholder */
  .sr-card-element {
    padding-top: 12px;
  }
  
  /* Responsiveness */
  @media (min-width: 720px) {
    .sr-root {
      flex-direction: row;
      justify-content: center;
      padding: 0;
    }
  
    .sr-header__logo {
      background-position: center top;
    }
  
    .sr-payment-summary {
      text-align: left;
    }
  
    .sr-content {
      display: block;
    }
  
    .sr-main {
      width: auto;
    }
  }
  
  /* Pasha styles – Brand-overrides, can split these out */
  :root {
    --accent-color: var(--green-dark);
    --headline-color: #000000;
    --logo-image: url("/img/SakundiLogo1.png");
    --premium-image: url("/img/premium.png")
  }
  
  .togethere-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--green-mid);
    height: 275px;
  }
  
  .sr-main h1 {
    font-size: x-large;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .price-table-container {
    display: flex;
    box-shadow: 0 2px 5px 0 rgba(60, 66, 87, .08), 0 1px 1px 0 rgba(0, 0, 0, .12);
  }
  
  .price-table-container section {
    border-radius: 6px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    background-color: #ffffff;
  }

  .price-table-container section input[type="text"],
  .price-table-container section input[type="password"] {
      width: 100%; /* Mismo ancho */
      padding: 8px; /* Mismo padding */
      margin: 10px 0; /* Mismo margen */
      box-sizing: border-box; /* Incluye padding y borde en el ancho */
      border: 1px solid #ccc; /* Mismo borde */
      border-radius: 5px; /* Borde redondeado */
      background-color: #fff; /* Mismo fondo */
      font-size: 16px; /* Mismo tamaño de fuente */
      display: block; /* Asegura el mismo modelo de caja */
      appearance: none; /* Elimina estilos nativos del navegador */
      outline: none; /* Evita bordes adicionales en el foco */
  } 

  .price-table-container section input[type="text"]:hover {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  .price-table-container section input[type="password"]:hover {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  .price-table-container section input[type="text"]:focus {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  .price-table-container section input[type="password"]:focus {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  /* Estilos específicos para input de email en forgot-password */
  .price-table-container section input[type="email"] {
      width: 100%; /* Mismo ancho */
      padding: 8px; /* Mismo padding */
      margin: 10px 0; /* Mismo margen */
      box-sizing: border-box; /* Incluye padding y borde en el ancho */
      border: 1px solid #ccc; /* Mismo borde */
      border-radius: 5px; /* Borde redondeado */
      background-color: #fff; /* Mismo fondo */
      font-size: 16px; /* Mismo tamaño de fuente */
      display: block; /* Asegura el mismo modelo de caja */
      appearance: none; /* Elimina estilos nativos del navegador */
      outline: none; /* Evita bordes adicionales en el foco */
  }

  .price-table-container section input[type="email"]:hover {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  .price-table-container section input[type="email"]:focus {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  /* Estilos para contenedor de contraseña con toggle */
  .password-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s ease;
  }

  .password-toggle:hover {
    color: #21E8AA;
  }

  .password-toggle svg {
    width: 18px;
    height: 18px;
  }

  /* Ajustar padding del input para dar espacio al icono */
  .password-container input[type="password"],
  .password-container input[type="text"] {
    padding-right: 45px !important;
  }
  
  .price-table-container section:first-of-type {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: 1px solid #efefef;
  }
  
  .price-table-container section:last-of-type {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
  }
  
  .price-table-container button {
    background-color: #21E8AA;
    color: #ffffff;
    border-radius: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .price-table-container button:hover {
    background-color: #09294C;
    filter: none;
  }
  
  .price-table-container .name {
    color: #A1A1A1;
    font-size: large;
    margin-top: 8px;
    text-align: center;
  }
  
  .price-table-container .price {
    color: #21E8AA;
    font-size: x-large;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 8px;
    text-align: center;
  }
  
  .price-table-container .duration {
    color: #A1A1A1;
    font-size: smaller;
    text-align: center;
  }

  .price-table-container .generaltext {
    color: #A1A1A1;
    font-size: smaller;
    margin-top: 10px;
    text-align: center;
  }

  .profile-container {
    display: flex;
    box-shadow: 0 2px 5px 0 rgba(60, 66, 87, .08), 0 1px 1px 0 rgba(0, 0, 0, .12);
  }
  
  .profile-container section {
    border-radius: 10px !important;
    overflow: hidden;
    padding: 20px 10px;
    display: flex;
    margin-top: 50px;
    margin-left: 150px;
    flex-direction: column;
    align-items: left;
    width: 500px;
    background-color: #ffffff;
  }

  .profile-container section input[type="text"] {
    width: 70%;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    box-sizing: border-box; 
    text-align: left; 
  }

  .profile-container section input[type="text"]:hover {
    border-color: #21E8AA;
    box-shadow: 0 0 8px #21E8AA;
    background-color: #f0fff0;
  }

  .profile-container section:first-of-type {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: 1px solid #efefef;
  }
  
  .profile-container section:last-of-type {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
  }

  .profile-container button {
    background-color: #21E8AA;
    color: #ffffff;
    border-radius: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .profile-container button:hover {
    background-color: #09294C;
    filter: none;
  }
  
  .profile-container .name {
    color: #A1A1A1;
    font-size: large;
    margin-top: 8px;
    margin-left: 20px;
    text-align: center;
  }
  
  .profile-container .price {
    color: #21E8AA;
    font-size: x-large;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 8px;
    text-align: center;
  }
  
  .profile-container .duration {
    color: #A1A1A1;
    font-size: smaller;
    text-align: center;
  }

  .profile-container .generaltext {
    color: #A1A1A1;
    font-size: large;
    margin-top: 10px;
    text-align: center;
  }

  .profile-container .generaltittle {
    color: #A1A1A1;
    font-size: 15px;
    margin-top: 10px;
    margin-left: 30px;
    text-align: left;
  }
  
  .error-message-sign-up {
    color: red;
    font-size: 10px;
    display: none;
    margin-top: 1px;
    text-align: center;
  }

  .error-message {
    background-color: #000;
    color: #fff;
    display: none;
    font-weight: bold;
    left: 0;
    padding: 10px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
  }
  
  .completed-view-section {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
  }
  
  /* todo: spinner/processing state, errors, animations */
  
  .spinner,
  .spinner:before,
  .spinner:after {
    border-radius: 50%;
  }
  .spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
  }
  .spinner:before,
  .spinner:after {
    position: absolute;
    content: "";
  }
  .spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: var(--accent-color);
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
  }
  .spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: var(--accent-color);
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
  }

  .dashboard-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 32px;
    margin-left: 100px;
  }
  
  .free-user-dashboard {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .premium-user-dashboard {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .plan-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .free-badge {
    background: #f8f9fa;
    border: 2px solid #6c757d;
    color: #6c757d;
  }
  
  .premium-badge {
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4aa, #00c199);
    color: white;
  }
  
  .upgrade-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .upgrade-link:hover {
    text-decoration: underline;
  }
  
  .usage-info {
    text-align: center;
    margin: 20px 0;
  }
  
  .usage-info h3 {
    color: #333;
    margin-bottom: 15px;
  }
  
  .usage-counter {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .current-usage {
    font-weight: bold;
    color: #00d4aa;
  }
  
  .total-limit {
    font-weight: bold;
    color: #666;
  }
  
  .usage-separator, .usage-label {
    color: #666;
  }
  
  .usage-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
  }
  
  .usage-progress {
    height: 100%;
    background: #00d4aa;
    transition: width 0.3s ease;
  }
  
  .premium-progress {
    background: linear-gradient(90deg, #00d4aa, #00c199);
  }
  
  .remaining-requests {
    color: #666;
    margin: 10px 0 5px 0;
  }
  
  .reset-date {
    color: #999;
    font-size: 14px;
    margin: 5px 0;
  }
  
  .limit-exceeded-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
  }
  
  .limit-exceeded-message h3 {
    color: #856404;
    margin-bottom: 10px;
  }
  
  .limit-exceeded-message p {
    color: #856404;
    margin-bottom: 15px;
  }
  
  .upgrade-button {
    background: linear-gradient(135deg, #00d4aa, #00c199);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .upgrade-button:hover {
    transform: translateY(-2px);
  }
  @-webkit-keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  /* Custom */
  .sr-container {
    display: flex;
  }
  
  .quantity-setter {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .quantity-setter input {
    border-radius: 0;
    width: 50px;
    padding: 0;
    text-align: center;
  }
  
  .quantity-setter .increment-btn {
    margin-top: 0;
    border-radius: 0;
    border: 1px solid var(--accent-color);
  }
  
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  /* Animated form */
  
  .sr-root {
    animation: 0.4s form-in;
    animation-fill-mode: both;
    animation-timing-function: ease;
  }
  
  .sr-payment-form .sr-form-row {
    animation: 0.4s field-in;
    animation-fill-mode: both;
    animation-timing-function: ease;
    transform-origin: 50% 0%;
  }
  
  /* need saas for loop :D  */
  .sr-payment-form .sr-form-row:nth-child(1) {
    animation-delay: 0;
  }
  .sr-payment-form .sr-form-row:nth-child(2) {
    animation-delay: 60ms;
  }
  .sr-payment-form .sr-form-row:nth-child(3) {
    animation-delay: 120ms;
  }
  .sr-payment-form .sr-form-row:nth-child(4) {
    animation-delay: 180ms;
  }
  .sr-payment-form .sr-form-row:nth-child(5) {
    animation-delay: 240ms;
  }
  .sr-payment-form .sr-form-row:nth-child(6) {
    animation-delay: 300ms;
  }
  .hidden {
    display: none;
  }
  
  @keyframes field-in {
    0% {
      opacity: 0;
      transform: translateY(8px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0px) scale(1);
    }
  }
  
  @keyframes form-in {
    0% {
      opacity: 0;
      transform: scale(0.98);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  button {
    width: 100%;
  }
  