body{
    font-family: Arial, sans-serif;
    margin:0;
    background:#f5f7fb;

}
header{
    display: flex;
    background:#1e2a38;
    color:white;
    padding:15px 0;
    clear: both;
    height: 80px;
    width:95%;
    max-width: 1500px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: fixed;
    top : 25px;
    left: 50%;
    transform: translateX(-50%);

}
header h1{
    display:inline-block;
    margin:0;
}
.logo{
    margin-left: 50px;
    float: left;
    width: 200px;
    height: auto;
    align-items: left;
}
/* Navigering */
header nav{
    display: flex;
    width: fit-content ;
    margin-left: auto;
    margin-right: 50px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0px;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e2a38;
  list-style: none;
  padding: 0px;
  margin: 0;
  width: max-content;
}

.dropdown-content li a {
  padding: 10px;

}

.dropdown-content li a:hover {
  background: #555;
}

.show {
  display: block;
}
.dropdown-header {
  color: #aaa;
  font-weight: bold;
  padding: 10px;
  margin-top: 5px;
  border-top: 1px solid #666;
  cursor: default;
}
main {
    width:95%;
    max-width: 1500px;
    margin:auto;
    margin-top: 105px;
    min-height: calc(100vh - 224px); /* Justera baserat på header och footer höjd */
    display: flex;
    flex-direction: column;
    border: 1px solid #000000;
    overflow-y: auto;
    padding: 10px;
}
footer{
    text-align:center;
    padding:10px;
    margin-top:40px;
    background:#1e2a38;
    color:white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 95%;
    max-width: 1500px;
    margin: auto;
}