/* SecureSys-Advisors Dark Theme */
body {
  background-color: #0d0d0d;
  color: #e6e6e6;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.secur-header {
  background-color: #000;
  border-bottom: 3px solid #cc0000;
  text-align: center;
  padding: 15px 0;
}

.secur-header img {
  max-height: 70px;
}

a {
  color: #cc0000;
  text-decoration: none;
}

a:hover {
  color: #ff3333;
}

/* boutons */
.btn, .button {
  background-color: #cc0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}
.btn:hover, .button:hover {
  background-color: #990000;
}

/* tables */
table th {
  background-color: #cc0000;
  color: #fff;
}
table td {
  color: #ddd;
  background-color: #111;
  border-color: #222;
}

/* formulaires */
input, textarea, select {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
}
input:focus, textarea:focus, select:focus {
  border-color: #cc0000;
  outline: none;
}

/* notifications */
.success { background-color: #123d12; border-left: 4px solid #00b300; color: #e6ffe6; }
.error   { background-color: #3d0f0f; border-left: 4px solid #cc0000; color: #ffe6e6; }
.info    { background-color: #0f223d; border-left: 4px solid #0066cc; color: #e6f2ff; }
