/* AEROSIG - estilos especificos del panel admin */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  width: 90%;
  max-width: 400px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.admin-item:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.admin-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: white;
}

.admin-item-info {
  flex: 1;
}

.admin-item-title {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.admin-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-delete {
  padding: 0.5rem 1rem;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-delete:hover {
  background: #b91c1c;
}
