/* CSS Document */
/* ================================
   Utility Disclosure App - Base UI
   ================================ */

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

a {
  color: #0b5ed7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  margin-top: 0;
  color: #1a1a1a;
}

h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* Layout container */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Forms */
form label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #cfd4dc;
  border-radius: 4px;
  font-size: 14px;
}

input::placeholder {
  color: #888;
}

button {
  margin-top: 20px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #094bb5;
}

button.secondary {
  background: #6c757d;
}

button.secondary:hover {
  background: #565e64;
}

/* Dashboard list */
ul {
  padding-left: 18px;
}

li {
  margin-bottom: 6px;
}

/* Utility sections */
.utility-group {
  padding: 10px 0;
  border-bottom: 1px solid #e6e9ef;
}

.utility-group:last-child {
  border-bottom: none;
}

/* Alerts / messages */
.notice {
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
  background: #e7f1ff;
  color: #084298;
}

.error {
  background: #f8d7da;
  color: #842029;
}

/* Footer disclaimer */
.disclaimer {
  font-size: 12px;
  color: #555;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

/* Small screens */
@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }
}
