/* SIMPLE DARK BLUE STYLE */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0b1440;
  color: white;
}

/* Layout */

.layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */

.sidebar {
  width: 250px;
  background-color: #0f1f4d;
  padding: 20px;
}

.sidebar a {
  color: #7aa7ff;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Main content */

.content {
  flex: 1;
  padding: 30px;
  background-color: #0b1740;
}

/* Lines between sections */

hr {
  border: none;
  border-top: 1px solid #2a3d80;
}