
body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}
header, footer {
  background: linear-gradient(90deg, #ff6600, #ff3300);
  padding: 16px;
  text-align: center;
  color: white;
  text-shadow: 0 0 8px #ff6600;
  box-shadow: 0 0 15px #ff6600;
}
.navbar a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  transition: color .2s;
}
.navbar a:hover {
  color: #ffcc99;
  text-shadow: 0 0 8px #ff6600;
}
.card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin: 16px;
  box-shadow: 0 0 15px #ff6600;
}
.btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px #ff6600;
  transition: all .2s;
}
.btn:hover {
  background: #ff3300;
  box-shadow: 0 0 18px #ff3300;
}
input, select {
  background: #0f0f0f;
  border: 2px solid #ff6600;
  color: white;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
}
.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.section-title {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #ff6600;
  text-shadow: 0 0 8px #ff6600;
}
.report-item {
  display: flex;
  align-items: center;
  background: #141414;
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff3300;
}
.report-item .head {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 10px;
  background-size: cover;
}
.progress {
  background: #333;
  border-radius: 6px;
  overflow: hidden;
  height: 10px;
}
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff3300, #ff9900);
  box-shadow: 0 0 8px #ff6600;
}
