

/* Reset background colors */
html {
  background-color: white;
  background-image: none;
}

/* Reset footer */
.content__footer {
  background-color: #081856;
  border-top: 5px solid #f68b1f;
  color: white;
  width: 100%;
}
.content__footer a {
  color: white;
}
.content__footer .lang__switcher {
  width: auto;
}

/* Smaller h1 font size than in original */
h1 {
  font-size: 3rem;
}

/* Reset content layout */
.layout__content {
  background-color: transparent;
  border: 0px none;
  color: black;
  max-width: 900px;
  width: 60vw;
  justify-content: center;
  padding: 0;
}
@media (max-width: 800px) {
  .layout__content {
    width: 100%;
  }
}

/* Reset button layout */
body input[type="submit"] {
  background-color: #007bff;
  border: 1px solid #007bff;
  color: white;
  cursor: pointer;
  font-size: 1em;
}
body input[type="submit"]:not(:disabled) {
  background-color: #007bff;
  border-color: #007bff;
}
body input[type="submit"]:hover:not(:disabled) {
  background-color: #0056b3;
  border-color: #0056b3;
}
body input[type="button"], body button {
  background-color: #9b9b9b;
  border: 1px solid #5c5c5c;
  color: white;
  cursor: pointer;
  font-size: 1em;
}
body button:hover, body input[type="button"]:hover {
  background-color: #7a7a7a;
  border-color: #3c3c3c;
}

/* Reset notifications */
body .severity-info, body .info{
  background-color: #00aad4;
  border-color: #00aad4;
  color: white;
}
body .severity-success, body .success {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

/* Add fixed logo from url to the top left corner */
@media (min-width: 800px) {
  body::before {
    content: "";
    position: fixed;
    top: 2em;
    left: 2em;
    width: 150px;  /* Set appropriate width */
    height: 80px;  /* Set appropriate height */
    background-image: url('https://www.raahensatama.fi/application/themes/satama/images/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1000; /* Ensure it appears above other content */
  }
}