body { background: red !important; }

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;      /* 🔥 CENTER FIX */
  text-align: center;       /* 🔥 CENTER FIX */
}

.logo {
  max-width: 150px;
  margin-bottom: 12px;
}

.header-inner h1 {
  font-size: 26px;
  color: #0f4c81;
  margin: 5px 0;
}

.subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

/* ===== PROGRESS ===== */
.progress-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.progress-text {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.progress-bar {
  height: 14px;
  background: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0f4c81, #1f7fd6);
}

/* ===== FORM ===== */
.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

textarea {
  min-height: 90px;
}

input[readonly] {
  background: #f0f0f0;
  font-weight: bold;
}

button {
  background: #0f4c81;
  color: #ffffff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0b3a63;
}

/* ===== CLOSED ===== */
.closed {
  text-align: center;
  font-size: 20px;
  color: red;
  font-weight: bold;
}
