.add-box {
  background: #0f0f1a;
  border: 1px solid #1e1e2e;
  border-radius: 14px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.add-box:focus-within {
  border-color: #3d2070;
}

.add-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.meta-row {
  display: flex;
  gap: 8px;
}

input[type="text"] {
  flex: 1;
  height: 40px;
  background: #080810;
  border: 1px solid #1e1e2e;
  border-radius: 9px;
  padding: 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]::placeholder {
  color: #333345;
}

input[type="text"]:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

input[type="datetime-local"],
input[type="time"] {
  flex: 1;
  height: 34px;
  background: #080810;
  border: 1px solid #1e1e2e;
  border-radius: 9px;
  padding: 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #555570;
  outline: none;
  transition: border-color 0.2s;
}

input[type="datetime-local"]:focus,
input[type="time"]:focus {
  border-color: #7c3aed;
}

select {
  height: 34px;
  background: #080810;
  border: 1px solid #1e1e2e;
  border-radius: 9px;
  padding: 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #555570;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

select:focus {
  border-color: #7c3aed;
}

.btn-agregar {
  height: 40px;
  padding: 0 18px;
  background: #7c3aed;
  color: white;
  border: none;
  border-radius: 9px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35);
}

.btn-agregar:hover {
  background: #6d28d9;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
}

.btn-agregar:active {
  transform: translateY(0);
}

.footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #333345;
}

.btn-limpiar {
  font-size: 11px;
  background: transparent;
  border: none;
  color: #555570;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-limpiar:hover {
  color: #a78bfa;
}
.buscador-box {
  margin-bottom: 0.75rem;
}

.buscador-box input {
  width: 100%;
  height: 38px;
  background: #080810;
  border: 1px solid #1e1e2e;
  border-radius: 9px;
  padding: 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.2s;
}

.buscador-box input:focus {
  border-color: #7c3aed;
}
