body{
  font-family:Arial,sans-serif;
  margin:0;
  background:#f4f6f8;
  color:#222;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  background:#17212b;
  color:#fff;
}

header a{
  color:#8fd3ff;
  text-decoration:none;
}

main{
  padding:20px;
}

.card{
  background:#fff;
  border-radius:10px;
  padding:14px;
  margin-bottom:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.row-card{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
}

.field{
  display:flex;
  gap:6px;
  align-items:center;
  min-width:180px;
}

.label{
  font-weight:700;
  color:#555;
}

.value{
  font-weight:500;
}

.status{
  font-weight:700;
}

.pendiente{
  color:#b45309;
}

.enproceso{
  color:#1d4ed8;
}

.terminado{
  color:#15803d;
}

form{
  display:grid;
  gap:10px;
  max-width:420px;
  margin-bottom:20px;
}

input,button{
  padding:10px;
  font-size:16px;
}

button{
  background:#2563eb;
  color:#fff;
  border:0;
  border-radius:8px;
}

.danger{
  background:#dc2626;
}

.notice-line{
  margin-top:8px;
  display:flex;
  gap:6px;
}

.notice-line .label{
  font-weight:700;
  color:#b91c1c;
}

.notice-line .value{
  font-weight:500;
}
