body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f2f5;
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1877f2;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.topbar .logo {
  font-weight: bold;
  font-size: 18px;
}

.topbar nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.topbar nav a:hover {
  text-decoration: underline;
}

.layout {
  display: flex;
  margin-top: 60px;
}

.sidebar {
  position: fixed;
  top: 60px; /* under topbaren */
  left: 0;
  width: 220px;
  height: calc(100vh - 60px);
  background-color: #fff;
  padding: 20px;
  border-right: 1px solid #ddd;
  overflow-y: auto;
}


.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.sidebar a:hover {
  color: #1877f2;
}

.content {
  margin-left: 220px; /* samma som sidebar-bredd */
  padding: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #1877f2;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}

.btn:hover {
  background-color: #145dbf;
}

.btn-small {
  display: inline-block;
  background-color: #42b72a;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 5px;
}

.btn-small:hover {
  background-color: #36a420;
}

.family-list {
  list-style: none;
  padding: 0;
}

.family-list li {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}