body {
  background: #FFFFFF;
  font-family: Arial, sans-serif;
  color: #1D1D1E;
  margin: 0;
}

html {
  background: #FFFFFF;
}

/* Full-height Meridio side bars */
body::before,
body::after {
  content: "";
  position: fixed;
  top: -40px;
  bottom: -40px;
  width: 140px;
  background: #002147;
  opacity: 0.98;
  z-index: 0;
  pointer-events: none;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

/* Main centered content area */
main,
[role="main"] {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 28px auto 40px auto;
  padding: 36px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 33, 71, 0.10);
}

/* Inner wrappers */
div[class*="container"],
div[class*="content"] {
  border-radius: 16px;
}

/* Typography */
h1,
h2 {
  color: #002147;
  margin-top: 0;
  margin-bottom: 12px;
}

h3,
h4 {
  color: #040406;
  margin-top: 0;
  margin-bottom: 10px;
}

p,
li,
span,
label {
  color: #1D1D1E;
  line-height: 1.55;
}

/* Links */
a {
  color: #002147;
  transition: color 0.2s ease;
}

a:hover {
  color: #CE06A6;
}

/* Buttons */
button,
input[type="submit"] {
  border-radius: 999px;
  font-weight: 600;
  background-color: #002147;
  border: 1px solid #002147;
  color: #FFFFFF;
  padding: 10px 18px;
  transition: all 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: #CE06A6;
  border-color: #CE06A6;
  color: #FFFFFF;
}

/* Inputs */
input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid #DCDCDC;
  padding: 10px 12px;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #002147;
  box-shadow: 0 0 0 2px rgba(0, 33, 71, 0.10);
}

/* Filters + cards + job blocks */
section,
article,
div[class*="job"],
div[class*="opening"],
div[class*="card"],
div[class*="panel"] {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 33, 71, 0.05);
  padding: 18px 20px;
  margin-bottom: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

section:hover,
article:hover,
div[class*="job"]:hover,
div[class*="opening"]:hover,
div[class*="card"]:hover,
div[class*="panel"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 33, 71, 0.10);
  border-color: #DCDCDC;
}

/* Slightly tighter spacing at the top */
header,
nav {
  margin-bottom: 18px;
}

/* Subtle top accent */
main::before,
[role="main"]::before {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: #CE06A6;
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  body::before,
  body::after {
    width: 24px;
    top: -20px;
    bottom: -20px;
  }

  main,
  [role="main"] {
    margin: 16px auto 24px auto;
    padding: 22px;
    border-radius: 14px;
  }

  button,
  input[type="submit"] {
    width: 100%;
  }
}