/* 1. Reset & Base ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #1f2330;
  color: #ececec;
}

/* Remove that weird white stripe */
html, body {
  margin: 0;
  padding: 0;
  background: #1f2330; /* same as your admin header bg */
}

/* 2. Header ----------------------------------------------------------------- */
.header-style-3 {
  background-color: #0A2740;
  color: #fff;
  border-bottom: 1px solid #0c2e56;
}
.header-style-3 a {
  color: #fff;
  text-decoration: none;
}
.header-style-3 .header-top {
  padding: 10px 0;
  font-size: 0.9rem;
}
.header-style-3 .main-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.header-style-3 .main-menu li a:hover {
  color: #c1ae24;
}

/* 3. Container -------------------------------------------------------------- */
.admin-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* 4. Headings --------------------------------------------------------------- */
h1, h2, h3, h4 {
  color: #c1ae24;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* 5. Forms ------------------------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ececec;
  font-weight: bold;
}
.form-control,
.form-control-file,
textarea.form-control {
  width: 100%;
  background: #2e3140;
  border: 1px solid #444;
  color: #ececec;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
}
.form-control:focus,
textarea.form-control:focus {
  outline: none;
  border-color: #c1ae24;
  box-shadow: none;
}
.form-control-file {
  padding: 0.25rem 0;
}

/* 6. Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #c1ae24;
  color: #0A2740;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  background: #b29920;
}

/* 7. Image Preview ---------------------------------------------------------- */
.img-fluid {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* 8. Footer ----------------------------------------------------------------- */
.footer-area {
  background: #0A2740;
  color: #fff;
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer-area a {
  color: #c1ae24;
  text-decoration: none;
}
.footer-area a:hover {
  text-decoration: underline;
}
