/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
nav {
    background-color: #f8f8f8;
    padding: 10px 0;
    margin-bottom: 20px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
nav li {
    margin: 0 15px;
} 
/* Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
ul {
  list-style: none;
  padding: 0;
}

ul li {
  position: relative;
}

ul li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

ul li ul {
  display: none; /* döljer submenyn */
  position: absolute;
  left: 0%; /* kan ändras till 0 för dropdown under */
  top: 35px; /* justera efter behov */
  background: #f9f9f9;
  padding: 0;
  min-width: 180px;
  border: 1px solid #ccc;
}

ul li:hover > ul {
  display: block; /* visar submenyn vid hover */
}

ul li ul li a {
  padding: 6px 10px;
}