/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

body {
  background-color: #D3D3D3;
}


/* Button styled like the navbar */
/* CV download button: white by default, green on hover */
.btn {
  display: inline-block;
  background-color: #fff;     /* un-hovered: white */
  color: #333;                /* readable text on white */
  padding: 14px 16px;         /* match navbar spacing */
  font-size: 17px;            /* match navbar font size */
  text-decoration: none;
  border: 1px solid #333;     /* subtle outline so it’s visible on grey bg */
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  background-color: #04AA6D;  /* same green as navbar active */
  color: #333;                /* white text on green */
  border-color: #04AA6D;
  outline: none;
}

