@charset "UTF-8";
.execute-header {
  text-align: center;
  margin-bottom: 3rem;
}

.execute-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #b45309;
  letter-spacing: -1.5px;
}

.execute-header p {
  font-size: 1.25rem;
  color: #78350f;
  margin-top: 0.75rem;
}

.execute-flex {
  width: 100%;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
}

.execute-panel {
  width: 35rem;
  height: -webkit-fill-available;
  background: #ffffff;
  border: 2px solid #e2e2e2;
  border-radius: 1.8rem;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.12);
}

.panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #b45309;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dossier-item {
  background: #fffaf0;
  border: 2px solid transparent;
  border-radius: 1.3rem;
  padding: 1.3rem 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dossier-item .dossier-container {
  width: calc(75% - 50px);
  overflow: hidden;
}

.dossier-item:hover {
  border-color: #d97706;
  background: #fff7ed;
  transform: translateX(10px);
}

.dossier-item input[type=checkbox] {
  width: 26px;
  height: 26px;
  accent-color: #d97706;
  cursor: pointer;
  border-radius: 0.4rem;
}

.dossier-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f4;
}

.dossier-item.disabled:hover {
  transform: none;
  border-color: transparent;
}

#ptSelector {
  cursor: pointer;
  max-width: none !important;
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  border: 2px solid #e2e2e2;
  border-radius: 1.4rem;
  background: white;
}

#ptSelector:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.3);
}

.milestone-info {
  margin-top: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #e2e2e2;
  border-radius: 1.6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone-info.show {
  opacity: 1;
  transform: translateY(0);
}

.info-block h4 {
  color: #b45309;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.task {
  background: white;
  padding: 1.1rem 1.4rem;
  border-radius: 1.1rem;
  border-left: 5px solid #f59e0b;
  margin-bottom: 0.8rem;
}

.humint-alert {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 1.6rem;
  border-radius: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.8rem;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

#executeButton {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 2.5rem;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

#executeButton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.7s;
}

#executeButton:hover::before {
  left: 100%;
}

#executeButton:hover:not(:disabled) {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(217, 119, 6, 0.5);
}

#executeButton:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
#spinner {
  position: fixed;
  inset: 0;
  background: rgba(255, 251, 247, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.spinner {
  width: 100px;
  height: 100px;
  border: 10px solid #e2e2e2;
  border-top: 10px solid #d97706;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pruebas-container-execute {
  display: none;
  height: 85%;
  width: 60vw;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  animation: alternate slideInLeft 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .pruebas-container-execute {
    width: 85vw;
  }
}

.expedientes-container-execute {
  position: fixed;
  right: 0vw;
  display: none;
  height: 50%;
  width: 45vw;
  animation: slideInRight 0.5s ease-in-out;
  z-index: 15;
}
.expedientes-container-execute form {
  background-color: rgb(219, 219, 219);
  padding: 1rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.expedientes-container-execute form .form-group-dipma {
  flex-direction: row;
  margin-bottom: 0.25rem;
}
.expedientes-container-execute form button {
  margin-top: 0.75rem;
}
@media (max-width: 991px) {
  .expedientes-container-execute {
    width: 90vw;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.ejecutarBtn-execute {
  position: absolute;
  bottom: 10vh;
}
@media (max-width: 991px) {
  .ejecutarBtn-execute {
    position: fixed;
    bottom: 25vh;
    z-index: 10;
  }
}

.result-actions-menu {
  background-color: rgb(213, 223, 213);
  border-radius: 0.5rem;
  display: flex;
  position: absolute;
  right: 1.95rem;
}

.result-actions-menu-options {
  display: none;
  gap: 0.5rem;
  align-items: center;
  padding: 0.2rem;
  padding-left: 0.5rem;
}

.comment-result-container {
  border: 1px #e2e2e2 solid;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.result-filters {
  background: white;
  border: 2px solid #e2e2e2;
  border-radius: 1.8rem;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.result-filter-select {
  min-width: 220px;
  border-radius: 1.5rem !important;
  border: 2px solid #e2e2e2;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
}

.result-filter-select:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.1);
}

.result-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.result-card {
  background: white;
  border: 2px solid #e2e2e2;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(217, 119, 6, 0.12);
  transition: all 0.4s ease;
}

.result-header {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.result-meta {
  font-size: 0.95rem;
  opacity: 0.9;
}

.result-body {
  padding: 1.25rem 1rem;
}

.result-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1.8rem;
  background: #fffbf7;
  border-radius: 1.4rem;
  border-left: 5px solid #d97706;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
}

.info-item i {
  color: #d97706;
  font-size: 1.4rem;
}

.result-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.result-empty {
  text-align: center;
  padding: 6rem 2rem;
  color: rgba(148, 163, 163, 0.6392156863);
}

.result-empty i {
  font-size: 6rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}

.result-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(217, 119, 6, 0.12);
  border: 1px solid #e2e2e2;
  transition: all 0.4s ease;
}

/* Información de ejecución (nuevo header limpio) */
.result-execution-info {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-bottom: 2px solid #fed7aa;
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  font-size: 1rem;
}

.result-execution-info-header {
  border: 2px solid #e2e2e2;
  border-radius: 1.6rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.result-execution-info-header .execution-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  font-size: 1rem;
}

.execution-wrapper {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 2px solid #e2e2e2;
  border-radius: 1.5rem;
  background: #fffbf7;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.execution-meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #78350f;
}

.execution-meta-item i {
  color: #d97706;
  font-size: 1.4rem;
}

.execution-meta-item strong {
  color: #b45309;
  font-weight: 700;
}

.execution-drop-down {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.result-content {
  padding: 0rem 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d2d2d;
}

/* Markdown premium */
.result-content h1, .result-content h2, .result-content h3 {
  color: #b45309;
  font-weight: 800;
  margin: 2rem 0 1rem;
  letter-spacing: -0.5px;
}

.result-content h1 {
  font-size: 2rem;
  border-bottom: 3px solid #d97706;
  padding-bottom: 0.6rem;
}

.result-content h2 {
  font-size: 1.7rem;
  border-bottom: 2px solid #fed7aa;
  padding-bottom: 0.5rem;
}

.result-content h3 {
  font-size: 1.4rem;
}

.result-content p {
  white-space: pre-wrap;
}

.result-content pre {
  background: #1e1e1e;
  color: #f8f8f2;
  padding: 1.8rem;
  border-radius: 1.2rem;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid #fed7aa;
  font-family: "Fira Code", monospace;
  position: relative;
}

.result-content pre::before {
  content: "CÓDIGO";
  position: absolute;
  top: 0;
  left: 0;
  background: #d97706;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 1rem 0 1rem 0;
}

.result-content code {
  background: #fff7ed;
  color: #b45309;
  padding: 0.3rem 0.6rem;
  border-radius: 0.6rem;
  font-family: "Fira Code", monospace;
}

.result-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.action-btn {
  background: white;
  border: 2px solid #e2e2e2;
  color: #444;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 100px;
  justify-content: center;
}

.action-btn:hover {
  border-color: #d97706;
  background: #fff7ed;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

.action-btn.danger {
  border-color: #ef4444;
  color: #ef4444;
}

.action-btn.danger:hover {
  background: #ef4444;
  color: white !important;
}
.action-btn.danger:hover .trash-icon {
  color: white !important;
}

.result-empty {
  text-align: center;
  padding: 8rem 2rem;
  color: #94a3b8;
}

.result-empty i {
  font-size: 6rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .action-btn {
    padding: 0.9rem 2rem;
    gap: 0.15rem;
    min-width: 0;
    justify-content: center;
  }
  .result-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=execution.css.map */