@charset "UTF-8";
html,
body {
  height: 100%;
  color: #000000;
  margin: 0;
  padding: 0;
  background-color: rgb(248, 247, 246);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  flex: 0 0 auto;
}
header a {
  color: #ffffff;
}

.main-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

footer {
  flex: 0 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.bi {
  cursor: pointer;
}

.btn-submit-email {
  background-color: #1173A3;
  color: #ffffff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.btn-submit-email:hover {
  background-color: #0e5c82;
  color: #ffffff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.hover-lift {
  transition: all 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.hover-lift:hover .text-muted {
  color: white !important;
}

s .avatar-lg {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.alert-container {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.alert {
  top: 0.25rem;
  z-index: 1000;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
  animation: fadeOut 3s ease-in-out forwards;
}

.alert-prompt {
  --bs-alert-color: #ffffff !important;
  --bs-alert-bg: #a78bfa !important;
  --bs-alert-border-color: #8673be !important;
  --bs-alert-link-color: #836bc9 !important;
}

.alert-permanent {
  z-index: 1000;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.23);
  margin-bottom: 0 !important;
  padding: 0.5rem;
}

.theme-select,
.project-select {
  max-width: 10rem !important;
}

.prompt-optimizer {
  color: blueviolet;
  position: absolute;
  top: 0.25rem;
  right: 1.25rem;
  cursor: pointer;
}
.prompt-optimizer:hover {
  animation: bounce 1s infinite;
}

.prompt-optimizer-animation {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    /* visible durante un 60 % del tiempo total */
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.navbar-header {
  background-color: rgb(119, 162, 64);
  color: #ffffff;
  padding: 0.5rem;
  font-size: 1.1rem;
}
.navbar-header .nav-link {
  color: #ededed !important;
}
@media (max-width: 991px) {
  .navbar-header .nav-link:hover {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
}

.nav-link.sidebar-option.active {
  color: #ffffff !important;
  font-weight: 900;
}

.project-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#navbar-user {
  display: flex;
  cursor: pointer;
  margin-left: 1.5rem;
}
#navbar-user .navbar-user {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.navbar-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.9rem;
}

.card-user-dropdown {
  z-index: 100000;
  position: fixed;
  top: 3.6rem;
  right: 0rem;
  width: 10rem;
  height: 4.5rem;
  background-color: rgb(119, 162, 64);
  color: #ffffff;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.dropdown-user {
  z-index: 100000;
  position: relative;
  right: 1.5rem;
  list-style: none;
  text-align: start;
}
.dropdown-user li {
  width: 105%;
  padding: 0.25rem;
  cursor: pointer;
}

.orquestador-container {
  padding: 1rem;
  height: 100%;
}

.notice-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  width: 45%;
  padding: 1rem;
  text-align: initial;
}

.textarea-container {
  position: relative;
  width: 100%;
}

.prompt-input {
  width: 100%;
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  resize: none;
  min-height: 15rem;
  max-height: 25rem;
  outline: none;
}

/* Línea de escaneo */
.scan-line {
  position: absolute;
  top: 4.5rem;
  left: 1rem;
  width: 47.5%;
  height: 1.5em;
  /* Altura de una línea, ajusta según el tamaño de fuente */
  background: linear-gradient(to bottom, rgba(0, 255, 0, 0) 0%, rgba(0, 255, 0, 0.5) 50%, rgba(0, 255, 0, 0) 100%);
  opacity: 0;
  pointer-events: none;
  /* Para no interferir con el textarea */
  z-index: 2;
  transition: opacity 0.3s ease;
  border-radius: 50rem;
}

/* Clase para activar la animación */
.scan-line.scanning {
  opacity: 1;
  animation: scan 5s linear infinite;
}

/* Animación de escaneo vertical */
@keyframes scan {
  0% {
    top: 4.5rem;
  }
  50% {
    top: 90%;
  }
  100% {
    top: 4.5rem;
  }
}
td {
  font-size: 0.95rem;
}
td h1 {
  font-size: 1rem;
}
td h2 {
  font-size: 1rem;
}
td h3 {
  font-size: 1rem;
}
td h4 {
  font-size: 1rem;
}

.pagination {
  --bs-pagination-font-size: 0.5rem;
  margin-left: 0.5rem;
}
.pagination .active span {
  background-color: rgb(119, 162, 64) !important;
  color: #ffffff !important;
  border-color: rgb(119, 162, 64) !important;
}
.pagination .page-link {
  color: rgb(119, 162, 64);
}
.pagination .page-link:hover {
  background-color: rgb(119, 162, 64);
  color: #ffffff;
  border-color: rgb(119, 162, 64);
}

select {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
  max-width: 200px;
}

.resource-content {
  width: inherit;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
  max-width: 400px;
}
.resource-content p {
  margin-bottom: 0 !important;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
}
iframe img {
  height: webkit-fill-available;
  width: webkit-fill-available;
}
iframe body img {
  height: webkit-fill-available;
  width: webkit-fill-available;
}

.form-modal-sidebar {
  display: flex;
  height: 2.5rem;
}
.form-modal-sidebar a {
  color: #212529 !important;
  padding: 0.75rem;
  padding-top: 0.5rem;
  border: 1px solid transparent;
}
.form-modal-sidebar a:hover {
  padding-bottom: 0.25rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border: 1px solid #e2e2e2 !important;
  border-bottom: 1px solid #ffffff !important;
  padding: 0.75rem;
  padding-top: 0.5rem;
}

.form-group {
  display: flex;
}
.form-group .form-option {
  flex: 1;
  margin-right: 1rem;
}
.form-group .form-option:last-child {
  margin-right: 0;
}
.form-group .form-option select {
  max-width: none !important;
}

.active-sidebar {
  z-index: 100000;
  padding-bottom: 0.25rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border: 1px solid #e2e2e2 !important;
  border-bottom: 1px solid #ffffff !important;
  padding: 0.75rem;
  padding-top: 0.5rem;
}

.sidebar-content {
  position: relative;
  top: -0.07rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border: 1px solid #e2e2e2 !important;
  height: 15rem;
  overflow: auto;
}

.markdown-editor {
  display: block !important;
}

.toastui-editor-defaultUI {
  border: none !important;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.stats-card {
  width: 12.5rem !important;
}
.stats-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stats-card .card-body p {
  font-size: 2.5rem !important;
}

.chart-card {
  width: 49% !important;
  padding: 0.5rem !important;
}
.chart-card h5 {
  font-size: 1.5rem !important;
}

.actions-column {
  text-align: end;
}

.user-container {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.user-container .user-details {
  padding: 2rem;
  display: flex;
}
.user-container .user-details .user-info {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.user-container .user-details .user-info .user-has {
  height: 100%;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(15rem, 1fr));
  grid-template-rows: auto;
  grid-auto-flow: row;
  grid-row-gap: 1rem;
}

.user-options-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.user-options-container .edit-card,
.user-options-container .change-password-card,
.user-options-container .twofa-card {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  width: 9rem;
  height: 7.5rem;
  cursor: pointer;
}
.user-options-container .edit-card i,
.user-options-container .change-password-card i,
.user-options-container .twofa-card i {
  font-size: 2rem;
}

.reset-password-form {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-top: 10rem;
}

.notice-container-otc {
  justify-content: flex-start !important;
  margin-top: 6.5rem;
}

.otc-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: white;
  max-width: 30rem;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 20px auto;
}

.otc-header {
  background: rgb(17, 115, 165);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.otc-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.otc-header p {
  opacity: 0.95;
  font-size: 0.95rem;
}

.otc-body {
  padding: 2.5rem 2rem;
}

.otc-instructions {
  color: #6c757d;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.otc-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.otc-input {
  width: 52px;
  height: 62px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.2s ease;
  outline: none;
  background: #fff;
}

.otc-input:focus {
  border-color: rgb(17, 115, 165);
  box-shadow: 0 0 0 4px rgba(119, 162, 64, 0.1);
}

.otc-input.filled {
  border-color: rgb(17, 115, 165);
}

.otc-hidden-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.otc-submit {
  width: 100%;
  padding: 14px;
  background: rgb(17, 115, 165);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.otc-submit:hover {
  background: rgb(14, 92, 130);
  color: #ffffff;
}

.otc-submit:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

/* Estilos personalizados para paginación */
.pagination {
  margin-bottom: 0 !important;
}

.page-link {
  color: #6c757d;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: all 0.15s ease-in-out;
  padding: 0.5rem 0.75rem;
  margin: 0 2px;
  border-radius: 0.75rem !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.page-link:hover {
  color: #0d6efd;
  background-color: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.3) !important;
}

.page-item.active .page-link:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-1px);
}

.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6;
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none !important;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
  margin-left: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}

/* Info de paginación */
.pagination-info {
  color: #6c757d;
  font-size: 0.875rem;
}

.btn-2fa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.font-mono {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .theme-select,
  .project-select {
    max-width: none !important;
  }
  .main-page {
    min-height: auto;
  }
  .alert-dipma {
    right: 1rem;
    width: calc(100% - 2rem);
  }
  .navbar-header {
    text-align: center;
  }
  .project-selector {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .project-selector form {
    width: 100%;
  }
  #navbar-user {
    margin-left: 0rem;
  }
  #navbar-user .navbar-user {
    align-items: end;
  }
  .navbar-user-info {
    margin-top: 0.5rem;
    flex-direction: row;
    width: 100%;
  }
  .navbar-user-info p:nth-of-type(2)::before {
    margin-left: 0.25rem;
    content: " - ";
  }
  .card-user-dropdown {
    position: relative;
    top: -0.75rem !important;
    width: 100%;
    height: 3rem;
  }
  .dropdown-user {
    padding-top: 0.5rem;
    padding-left: 0rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 0rem;
    text-align: center;
  }
  .orquestador-container {
    height: 100%;
  }
  .notice-container {
    text-align: center;
  }
  .card {
    width: 90%;
  }
  .stats-container {
    justify-content: center !important;
  }
  .stats-container .chart-card {
    width: 90% !important;
  }
  .stats-card {
    width: 6rem !important;
  }
  .stats-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stats-card .card-body h5 {
    font-size: 0.75rem !important;
  }
  .stats-card .card-body p {
    font-size: 1.5rem !important;
  }
  .user-container {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.7rem !important;
  }
  .user-container .user-details {
    width: 100% !important;
  }
  .user-container .user-details .user-info {
    flex-direction: column;
  }
  .user-container .user-details .user-info .user-has {
    grid-template-columns: repeat(2, minmax(5rem, 1fr));
  }
  .user-container .user-details .user-info .user-has h3 {
    font-size: 0.75rem !important;
  }
  .user-options-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
  .user-options-container .edit-card,
  .user-options-container .change-password-card,
  .user-options-container .twofa-card {
    width: 6.75rem;
    height: 6.75rem;
    cursor: pointer;
  }
  .user-options-container .edit-card i,
  .user-options-container .change-password-card i,
  .user-options-container .twofa-card i {
    font-size: 1.5rem;
  }
  .notice-container-otc {
    margin-top: 1.5rem !important;
  }
  .card-otc {
    width: 80% !important;
  }
  .logo-otc {
    height: 175px !important;
  }
}/*# sourceMappingURL=style.css.map */