.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 #fed7aa;
  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 #fed7aa;
  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 #fed7aa;
  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 #fed7aa;
  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 {
  display: flex;
  gap: 0.5rem;
}

.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;
}/*# sourceMappingURL=execution.css.map */