.site-disclaimer {
  background: black;
  border-bottom: 1px solid #ddd;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 1.5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000; /* sits above header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-disclaimer p {
  margin: 0;
  color: white;
  text-align: center;
  flex: 1;
  padding-right: 15px;
}

.site-disclaimer a {
  color: red;
  text-decoration: underline;
}

.site-disclaimer .close-disclaimer {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: yellow;
  line-height: 1;
}