/* DASHBOARD APP*/
#dashboard-section {
    width: 100%;
    position: relative;
  }
  
  /* BARRA DE CONTROL LATERAL */
  #aside-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    height: 90vh;
    top: 60px;
    left: 0;
    z-index: 1000;
    padding: 0 10px;
    width: 70px;
    transition-duration: 0.4s;
    position: fixed;
    border-right: 1px solid var(--panel2);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0);
  }
  
  #aside-buttons:hover {
    width: 250px;
  }
  
  .open-mobile-aside {
    display: none;
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 1.3rem;
    z-index: 99;
    color: var(--panel2);
  }
  
  #aside-buttons:hover .secondary-content {
    display: flex;
  }
  
  .secondary-content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 15px;
    transition-duration: 0.4s;
    color: grey;
    font-family: var(--main);
    font-size: 15px;
  }
  
  .secondary-content a {
    color: grey;
  }
  
  .secondary-content a:hover {
    color: var(--greenFull3);
  }
  
  .secondary-content > a:nth-child(4) {
    cursor: text;
  }
  
  .secondary-content > a:nth-child(4):hover {
    color: grey;
  }
  
  .logos-redes {
    padding-top: 20px;
    border-top: 1px solid var(--blackPanel);
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: -100px;
  }
  
  .logos-redes > a {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    border: 1px solid transparent;
  }
  
  .filter-shadow {
    filter: drop-shadow(2px 4px 6px black);
  }
  
  .logos-redes > a:hover {
    background-color: var(--borderInputs);
    border: 1px solid var(--panel2);
  }
  
  .logos-redes > a > i {
    color: rgb(192, 192, 192);
    transform: scale(1.2);
  }
  
  .logos-redes > a:hover i {
    color: white;
    transform: scale(1.1);
  }
  
  .aside-button-instagram-styles {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px 30px 10px 10px;
    color: black;
  }
  .aside-button-youtube-styles {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px 10px 10px 30px;
    color: black;
  }
  
  .links-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--third);
  }
  
  .button-tab {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: transparent;
    color: white;
    font-family: var(--main);
    transition: 0.4s;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    height: 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
  }
  
  .button-tab:hover {
    transition: 0.4s;
    background-color: var(--greenFull3);
    color: black;
  }
  
  .active {
    background-color: var(--panel2);
  }
  
  #icon-content-buttons-aside {
    color: white;
    filter: drop-shadow(1px 1px 3px black);
  }
  
  .buttons-content {
    width: 100%;
  }
  /* FIN BARRA DE CONTROL LATERAL */
  
  #dashboard-content-generator {
    width: calc(100% - 70px);
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
  
  @media (max-width: 968px) {
    #dashboard-content-generator {
      width: 94%;
    }
    #aside-buttons {
      width: 40px;
    }
    .buttons-content {
      display: none;
    }
    #aside-buttons:hover .buttons-content {
      display: block;
    }
    .open-mobile-aside {
      display: block;
      color: white;
    }
    #aside-buttons:hover .open-mobile-aside {
      display: none;
    }
  }


/* Estilos para el nuevo panel de generación */
.suggest-tittle-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5px;
  }
  
  .button-option-scripts {
    width: 200px;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 15px;
    border: 1px solid var(--borderInputs);
    cursor: pointer;
    position: relative;
    transition: 0.3s all;
    color: white;
  }
  
  .button-option-scripts:hover {
    background-color: var(--borderInputs);
    color: var(--greenFull2);
    box-shadow: 1px 1px 1px 1px var(--borderInputs);
  }
  
  .button-option-scripts > i {
    transition: 0.2s all;
  }
  
  .button-option-scripts:hover > i {
    transform: scale(1.1);
    filter: drop-shadow(2px 4px 6px black);
  }
  
  .button-option-scripts > p {
    font-size: 15px;
    font-family: var(--main);
    font-weight: bold;
  }
  
  .button-area1 {
    grid-area: button-area1;
  }
  .button-area2 {
    grid-area: button-area2;
  }
  .button-area3 {
    grid-area: button-area3;
  }
  
  #options-generate-scripts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
  
  .suggestion-item {
    padding: 5px;
    border-bottom: 2px solid var(--panel2);
    margin-top: 5px;
    background-color: transparent;
    color: var(--greenFull3);
    transition: border 0.5s;
    position: relative;
    padding: 16px;
    font-family: var(--main);
    font-weight: 300;
  }
  
  .suggestion-item > i {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 5px;
    background: var(--greenFull3);
    color: white;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 8px;
    box-shadow: 1px 1px 5px black;
  }
  
  .suggestion-item > i:hover {
    box-shadow: none;
    color: black;
    background-color: var(--greenFull1);
    border: 1px solid var(--blackPanel);
  }
  
  .modal-options {
    z-index: 4999;
    height: 90vh;
    width: 60vw;
    position: absolute;
    bottom: 30px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 25px 5px;
  }
  
  .close-modal-options {
    text-align: center;
    border: none;
    cursor: pointer;
    padding: 8px 25px;
    border-radius: 4px;
    background-color: var(--greenFull3);
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s all;
    color: black;
  }
  
  .close-modal-options:hover {
    background-color: var(--greenFull2);
  }


  #options-subtitle-template,
  #options-audio-template,
  #more-options-upload,
  #options-audio_GENERATE,
  #options-subtitle_GENERATE {
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    width: 500px;
    margin-bottom: 20px;
    position: relative;
  }
  
  #personalFolderSectionManual,
  #personalFolderSection,
  #referenceLink,
  #personalFolderManual {
    display: flex;
    flex-direction: column;
  }
  
  .block-form-modal-options {
    padding: 0 0 10px 0;
    border-bottom: 2px solid var(--borderInputs);
    display: flex;
    justify-content: space-between;
    gap: 5px;
    position: relative;
  }
  
  .block-form-modal-options > .label-user-dashboard {
    font-family: var(--second);
  }
  
  .block-form-modal-options > .select-user-dashboard > option {
    border-radius: none;
  }
  
  .block-form-modal-options > .select-user-dashboard {
    border: none;
    border-bottom: 4px solid var(--borderInputs);
    border-radius: 0;
    padding: 0 15px 15px 0;
  }
  
  .block-form-modal-options > .select-user-dashboard:focus {
    border: none;
    border-bottom: 4px solid var(--borderInputs);
    box-shadow: none;
    outline: none;
    box-shadow: none;
  }
  
  #more-options_GENERATE {
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 25px;
  }
  
  #more-options_GENERATE > .block-form {
    font-size: 15px;
  }
  
  #modal-upload,
  #modal_GENERATE {
    display: none;
    align-items: end;
    justify-content: center;
    position: fixed;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0.75);
    border-top: 10px solid var(--greenFull3);
  }
  
  .form-user-dashboard {
    width: 80%;
    min-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 70px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  
  .block-form {
    padding: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 4px;
    position: relative;
  }
  
  .label-user-dashboard {
    font-family: var(--main);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .input-user-dashboard {
    padding: 10px 5px;
    background-color: var(--inputs);
    border: 1px solid var(--borderInputs);
    font-family: var(--second);
    color: white;
    border-radius: 4px;
    font-size: 18px;
  }
  
  .input-user-dashboard:focus {
    outline: none;
  }
  
  .btn-custom {
    width: 32%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 4px;
    transition: 0.2s;
    position: relative;
    color: black;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--main);
    font-weight: bold;
    position: relative;
    text-align: left;
    margin: 0 auto;
    display: flex;
    align-items: center;
    transition: 0.3s all;
    justify-content: center;
    background: linear-gradient(
      90deg,
      var(--greenFull3) 0%,
      var(--greenFull2) 59%,
      white 100%
    );
    border: none;
  }
  
  .btn-custom:hover {
    background: white;
    
  }



/* Añadir al archivo styles.css o dashboard-styles.css */
.select-user-dashboard {
    font-family: var(--main);
    font-weight: bold;
    background-color: transparent;
    color: white;
    border-radius: 4px;
    padding: 2px;
    border: 1px solid var(--panel2);
    font-size: 15px;
    font-family: var(--second);
}

.select-user-dashboard option {
    background-color: var(--panel2);
    font-family: var(--second);
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: none;
}

.select-user-dashboard option:hover {
    background-color: var(--greenFull2);
}

.select-user-dashboard:focus {
    border: 1px solid var(--blueBtns);
}

/* Estilos para la entrada del archivo */
input[type="file"] {
    border-style: dotted;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    transition: 0.5s all;
}

input[type="file"]:hover {
    background-color: var(--greenFull3);
    color: black;
}

input[type="file"]::after {
    content: "";
}

input[type="file"]::-webkit-file-upload-button {
    display: none;
}

/* Estilos para el contador de caracteres */
#character-counter {
    font-family: var(--second);
    transition: color 0.3s ease;
}

/* Estilos para el botón deshabilitado */
#btn-upload-script:disabled {
    background-color: #555 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Corrige el fondo de la aplicación y los paneles */
body, #dashboard-content-generator, .form-user-dashboard {
    background-color: black;
}

/* Asegura que el formulario esté centrado */
#dashboard-content-generator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 70px);
    float: right;
    margin: 0;
    padding: 0;
}

/* Estilo para el textarea del guion */
#inputManualScript {
    background-color: var(--inputs);
    border: 1px solid var(--borderInputs);
    padding: 20px 12px;
    border-radius: 4px;
    color: white;
    font-family: var(--second);
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

/* Corrige el estilo del modal */
#modal-upload {
    display: none;
    align-items: end;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0.75);
    border-top: 10px solid var(--greenFull3);
}

/* Asegura que el botón de subir guion esté bien posicionado */
#btn-upload-script {
    margin-top: 15px;
    margin-left: 0;
    width: 200px;
}


/* AJUSTE GENERAL PARA LA PESTAÑA DE GALERÍA */
#your-videos {
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 70px);
    min-height: 80vh;
    margin: 0 auto;
    padding: 40px;
    background-color: black; /* Forzar fondo negro */
    margin-left: 70px; /* Dar espacio para la barra lateral */
    overflow-x: hidden;
    position: relative;
  }
  
  @media (max-width: 992px) {
    #your-videos {
      width: calc(100% - 40px);
      margin-left: 40px;
      padding: 20px;
    }
  }
  
  /* MEJORAR EL CONTENEDOR DE VIDEOS EN PROGRESO */
  #videosList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding: 20px 0 30px 0;
    border-bottom: 1px solid var(--borderInputs);
  }
  
  /* AJUSTAR LOS TÍTULOS */
  #videosList > h4, #btn-open-existing-videos {
    font-size: 25px;
    font-weight: bolder;
    font-family: var(--main);
    width: 100%;
    text-align: left;
    color: white;
    margin: 20px 0 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--borderInputs);
  }
  
  /* MEJORAR EL CONTENEDOR DE TAREAS EN PROGRESO */
  #inProgressTasks {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
  }
  
  /* CONTENEDOR DE VIDEOS ALMACENADOS */
  #videos-store {
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* MEJORAR LA APARIENCIA DE LOS ELEMENTOS DE VIDEO */
  .video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 350px;
    height: 380px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--borderInputs);
    border-radius: 8px;
    margin: 15px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* MEJORAR LA APARIENCIA DE LA BARRA DE PROGRESO */
  .progress-container {
    width: 100%;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--inputs);
    margin: 10px 0;
    position: relative;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(
      90deg,
      var(--greenFull3) 0%,
      var(--greenFull2) 50%,
      var(--greenFull1) 100%
    );
    border-radius: 10px;
    animation: pulse 2s infinite;
    transition: width 0.5s ease;
  }
  
  @keyframes pulse {
    0% {
      opacity: 0.8;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.8;
    }
  }
  
  /* MEJORAR LA APARIENCIA DE LOS TEXTOS DE ESTADO */
  .status {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--greenFull2);
    font-size: 18px;
    padding: 5px 0;
  }
  
  .status > p {
    font-family: var(--third);
    margin: 0;
    color: white;
  }
  
  #progress-percentage {
    padding: 0.5rem;
    color: var(--greenFull1);
    font-weight: bold;
    font-size: 18px;
  }
  
  /* MEJORAR LA ANIMACIÓN DE LOS PUNTOS SUSPENSIVOS */
  #puntos-suspensivos {
    display: flex;
    align-items: center;
  }
  
  .dot {
    font-size: 30px;
    margin-top: -10px;
    animation: fadeInOut 1.5s infinite;
    color: var(--greenFull3);
  }
  
  .dot:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  /* AJUSTAR EL CONTENEDOR DE VIDEOS EXISTENTES */
  #existingVideos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    transition: all 0.5s ease;
  }
  
  .open-existing {
    max-height: 1000px;
    height: auto;
    overflow-y: visible;
    padding: 20px 0;
    opacity: 1;
  }
  
  .close-existing {
    max-height: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
  }
  
  /* AJUSTAR LA APARIENCIA DEL BOTÓN DE TOGGLE */
  #btn-open-existing-videos {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    border-radius: 5px;
  }
  
  #btn-open-existing-videos:hover {
    background-color: var(--greenFull3);
    color: black;
    padding-left: 20px;
  }
  
  #btn-open-existing-videos:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  #btn-open-existing-videos.active:after {
    transform: rotate(180deg);
  }
  
  /* ESTILOS PARA EL ELEMENTO VIDEO EN PROGRESO */
  #inProgressTasks > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    border-left: 4px solid var(--greenFull3);
    width: 100%;
  }
  
  .task-progress {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9), rgba(5, 5, 5, 0.9));
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--borderInputs);
    margin-bottom: 15px;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }


  /* CONFIG SECTION */
#configForm,
#changeCredentialsForm {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 20px auto;
}

#content-config-apis,
#content-change-credencials {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#newUsername,
#currentPassword,
#newPassword {
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  border-bottom: 4px solid var(--greenFull3);
  font-family: var(--third);
}

.btn-config {
  margin-top: 30px;
  padding: 5px 20px;
  background-color: var(--greenFull3);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.btn-config:hover {
  background-color: var(--greenFull1);
}

#show-pw-config1,
#show-pw-config2 {
  position: absolute;
  right: 20px;
  top: 60px;
  cursor: pointer;
  color: white;
}

.btn-cancel-plan {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  border: none;
  background-color: transparent;
  transition: 0.2s;
  position: relative;
  color: var(--panel2);
  cursor: pointer;
  font-family: Inter;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: left;
  padding: 5px 10px;
  position: relative;
  text-align: left;
  margin: 0 auto;
}

.btn-cancel-plan:hover {
  background-color: red;
  color: white;
}

.minutes-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 12px;
  width: 100%;
}

.minutes-info-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--borderInputs);
  color: white;
}

.minutes-info-line > p {
  text-align: left;
  width: 170px;
  color: white;
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: var(--main);
  margin: 0;
}

.minutes-info-line > strong {
  color: var(--greenFull2);
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: var(--third);
  filter: drop-shadow(1px 1px 6px black);
}

.dashboard-content-forms {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  padding: 40px 20px;
}

.block-form {
  width: 100%;
  padding: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 4px;
  position: relative;
}

/* Ajustes responsive */
@media (max-width: 968px) {
  #configForm,
  #changeCredentialsForm {
    width: 100%;
  }

  .label-user-dashboard {
    font-size: 1.3rem;
  }

  .input-user-dashboard {
    font-size: 1rem;
  }

  #show-pw-config1,
  #show-pw-config2 {
    right: -20px;
  }
}

@media (max-width: 668px) {
  #configForm,
  #changeCredentialsForm {
    flex-direction: column;
    border-top: 1px solid var(--borderInputs);
  }
  
  .minutes-info-line > p,
  .minutes-info-line > strong {
    font-size: 1rem;
  }
}


/* CORRECCIONES PARA LA PESTAÑA DE CONFIGURACIÓN */
.dashboard-content-forms {
  width: 100%;
  min-height: 80vh;
  padding: 40px 20px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.config-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 20px auto;
  background-color: transparent;
  padding: 20px;
  border-radius: 8px;
}

#content-config-apis,
#content-change-credencials {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: transparent;
}

.block-form {
  width: 100%;
  padding: 10px 0px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
  position: relative;
}

.label-user-dashboard {
  font-family: var(--main);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.input-user-dashboard {
  width: 100%;
  padding: 12px 10px;
  background-color: var(--inputs);
  border: 1px solid var(--borderInputs);
  font-family: var(--second);
  color: white;
  border-radius: 4px;
  font-size: 18px;
}

.minutes-info {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 20px;
  background-color: rgba(20, 20, 20, 0.3);
  border-radius: 8px;
  border: 1px solid var(--borderInputs);
}

.minutes-info-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 5px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--borderInputs);
  color: white;
}

.minutes-info-line > p {
  text-align: left;
  width: 170px;
  color: white;
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: var(--main);
  margin: 0;
}

.minutes-info-line > strong {
  color: var(--greenFull2);
  font-weight: bolder;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: var(--third);
  filter: drop-shadow(1px 1px 6px black);
}

.btn-config {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: var(--greenFull3);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  color: white;
  width: auto;
  display: inline-block;
}

.btn-config:hover {
  background-color: var(--greenFull2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-cancel-plan {
  display: block;
  width: 100%;
  margin: 10px auto;
  border-radius: 4px;
  border: none;
  background-color: transparent;
  padding: 8px 15px;
  color: #ff6b6b;
  cursor: pointer;
  font-family: var(--main);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-cancel-plan:hover {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff3333;
}

#show-pw-config1,
#show-pw-config2 {
  position: absolute;
  right: 15px;
  top: 47px;
  cursor: pointer;
  color: #888;
  font-size: 1.2rem;
}

#show-pw-config1:hover,
#show-pw-config2:hover {
  color: var(--greenFull3);
}

/* Ajustes responsivos */
@media (max-width: 992px) {
  .config-form {
    width: 95%;
  }
  
  .label-user-dashboard {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .minutes-info-line > p,
  .minutes-info-line > strong {
    font-size: 1.2rem;
  }

  #show-pw-config1,
  #show-pw-config2 {
    top: 45px;
  }
}

@media (max-width: 576px) {
  .dashboard-content-forms {
    padding: 20px 10px;
  }
  
  .minutes-info-line > p,
  .minutes-info-line > strong {
    font-size: 1rem;
  }
  
  .btn-config, 
  .btn-cancel-plan {
    font-size: 1rem;
    padding: 8px 12px;
  }
}


/* Estilos responsivos mejorados para formularios */
@media (max-width: 992px) {
  .form-user-dashboard {
    width: 95%;
    padding: 30px 15px;
  }

  #btn-upload-script,
  #btn-generate-video-generate-script {
    width: 100%;
    position: static;
    margin: 15px 0;
  }
  
  .suggest-tittle-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .input-user-dashboard {
    font-size: 16px;
  }
  
  .label-user-dashboard {
    font-size: 1.2rem;
  }
  
  #inputManualScript {
    min-height: 120px;
  }
  
  #options-generate-scripts {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #dashboard-content-generator {
    width: 100%;
    padding: 0 10px;
  }
  
  .form-user-dashboard {
    width: 100%;
    padding: 20px 10px;
    min-height: auto;
  }
  
  .button-option-scripts {
    width: 100%;
    font-size: 16px;
    padding: 8px 10px;
  }
  
  #options-generate-scripts {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 8px;
  }
  
  #options-generate-scripts > span:nth-child(1),
  #options-generate-scripts > span:nth-child(3) {
    border-radius: 5px;
  }
  
  .modal-options {
    width: 95vw;
    height: 80vh;
  }
  
  #options-audio-template,
  #options-subtitle-template,
  #more-options-upload,
  #options-audio_GENERATE,
  #options-subtitle_GENERATE,
  #more-options_GENERATE {
    width: 95%;
    padding: 10px;
  }
  
  .close-modal-options {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .button-option-scripts {
    gap: 10px;
  }
  
  .button-option-scripts > p {
    font-size: 14px;
  }
  
  .block-form-modal-options {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .block-form-modal-options > .select-user-dashboard {
    width: 100%;
  }
  
  #modal-upload, 
  #modal_GENERATE {
    align-items: center;
  }
}