@charset "UTF-8";
.regulations-main {
  height: 72.5vh;
  flex: 1;
  background: white;
  border: 1px solid #e2e8f0;
  border-left: none;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.regulations-sidebar {
  width: 320px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem;
  padding: 2rem 1.8rem;
  height: 72.5vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.regulation-main-card {
  width: 85%;
  border: 2px solid #e2e2e2;
  border-radius: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  background: white;
}

.regulation-input-group {
  position: relative;
  margin-bottom: 2rem;
}

.regulation-input-group input {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  border: 2px solid #e2e2e2;
  border-radius: 1.6rem !important;
  transition: all 0.3s ease;
}

.regulation-input-group input:focus {
  outline: none;
  border-color: #ef7144;
  box-shadow: 0 0 0 6px rgba(239, 113, 68, 0.1);
}

.regulation-input-group label {
  background: white;
  position: absolute;
  left: 2rem;
  top: -1rem;
  padding: 0 1rem;
  font-weight: 600;
  color: #ef7144;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.regulation-sources-area {
  background: white;
  border: 3px dashed #e2e2e2;
  border-radius: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
  margin: 3rem 0;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.regulation-file-list {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
}

.regulation-file-item {
  background: white;
  padding: 1.4rem 2rem;
  border-radius: 1.4rem;
  border: 1px solid #e2e2e2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.regulation-file-item:hover {
  border-color: #ef7144;
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.08);
}

.regulation-sources-area:hover {
  border-color: #d97706;
}

.regulation-source-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.regulation-source-btn {
  border: 2px solid #e2e2e2;
  border-radius: 2rem;
  padding: 1.2rem 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.regulation-source-btn:hover {
  border-color: #d97706;
  background: #fffbf7;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.12);
}

.regulation-file-item {
  background: white;
  padding: 1.4rem 2rem;
  border-radius: 1.4rem;
  border: 1px solid #e2e2e2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.regulation-file-item:hover {
  border-color: #d97706;
}

.regulation-submit-btn {
  background: linear-gradient(135deg, #ef7144, #b45309);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 900;
  border-radius: 3rem;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.3);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.regulation-submit-btn:hover:not(:disabled) {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(217, 119, 6, 0.4);
}

.regulation-submit-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.regulation-dropzone {
  border: 3px dashed #e2e2e2 !important;
  border-radius: 1.5rem !important;
  background: #fffbf7 !important;
  padding: 3rem !important;
}

.regulation-dropzone:hover, .regulation-dropzone.dz-drag-hover {
  border-color: #d97706 !important;
  background: #fff7ed !important;
}

/* Animación de minería (golpe de pico) */
@keyframes miningHit {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-45deg);
  } /* Levanta el pico */
  50% {
    transform: rotate(10deg);
  } /* Golpea */
  100% {
    transform: rotate(0deg);
  }
}
.mining-icon {
  display: inline-block;
  font-size: 3rem;
  color: #d97706; /* Color ambar/tierra */
  animation: miningHit 1.2s infinite ease-in-out;
}

.regulation-card {
  cursor: grab;
  background: white;
  border: 1px solid #ede8e4;
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
  margin-bottom: 1rem;
}

.regulation-card:hover {
  border-color: #d97706;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.regulation-card {
  transition: opacity 0.2s, transform 0.1s;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.regulation-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.regulation-actions {
  display: flex;
  align-items: center;
}

.regulation-theme-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 0.5rem;
}

.regulation-theme-list-item:hover {
  background: #ffedd5;
  transform: translateX(4px);
}

.regulation-theme-list-item.active {
  background: #ffedd5;
  color: #d97706;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}

.regulation-theme-icon-circle {
  width: 44px;
  height: 44px;
  background: #ef7144;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.regulation-theme-list-item.active .regulation-theme-icon-circle {
  background: #d97706;
}

@media (max-width: 991px) {
  .regulation-source-buttons {
    grid-template-columns: 1fr;
  }
  .regulation-main-card {
    width: 100%;
  }
}/*# sourceMappingURL=regulation.css.map */