/* CSS overrides for CVB documentation */

div.contents {
  margin: 0px auto;
  max-width: 1000px;
}

a {
  color: #991616;
}

.contents a:visited {
  color: #AA2222;
}

a.code,
a.code:visited {
  color: #AA3333;
  font-weight: bold;
}

a.codeRef,
a.codeRef:visited {
  color: #AA3333;
  font-weight: bold;
}

.image {
  text-align: left;
}

.memproto {
  color: #545454
}

dl.note {
  margin-left: 0px;
  padding-left: 0px;
  border-left: 0px solid;
}

dl.attention {
  margin-left: 0px;
  padding-left: 0px;
  border-left: 0px solid;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 10%;
  width: 80%;
  background-color: #253447;
  color: #fff;
  padding: 1%;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
  /* Flexbox for layout */
  justify-content: space-between;
  /* Space between text and buttons */
  align-items: center;
  /* Align items vertically in the center */
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner a {
  color: #345089;
  text-decoration: underline;
}

.button-container {
  display: flex;
  /* Flexbox to align buttons in a row */
  gap: 10px;
  /* Spacing between buttons */
}

.cookie-banner button {
  padding: 8px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#accept-cookies {
  background-color: #345089;
  color: white;
}

#decline-cookies {
  background-color: #272727;
  color: white;
}