/* Apply box-sizing to all elements */
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Horizontal navigation bar */
.navbar {
  overflow: hidden;
  background-color: #111;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center; /* Center navbar links */
}

/* Links inside the navbar */
.navbar a {
  color: white;
  padding: 16px 20px;
  text-decoration: none;
  display: block;
}

/* Hover effect */
.navbar a:hover {
  background-color: #e91010;
  color: black;
}

/* Main content */
.content {
  margin-top: 80px;  /* Space for the fixed navbar */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Center images or other elements using this class */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Fix list styling */
.content ul,
.content ol {
  list-style-position: inside;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  display: inline-block;
}

/* Hide dev console */
#pandas-dev-console {
  display: none !important;
}

