body {
  background: #d1d0cd;
  color: black;
  font-family: Verdana;
}

.banner {
  background-color: #2e2e2e;
}

.header {
  width: 1000px;
  height: 15vh;
  overflow:hidden;
  display:flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

a {
  text-decoration: none;
}

/* NAVIGATION */
nav .headerNav{
  z-index: 1;
  font-family: verdana;
  width: 1000px;
  margin: auto;
  display: flex;
}

ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

li {
  color:#d1d0cd;
  background: #2e2e2e;
   display: block;
   float: left;
   padding: 1rem;
   position: relative;
   text-decoration: none;
   transition-duration: 0.5s;
}

li a {
  color: white;
}

li:hover,
li:focus-within {
  background: #124f88;
  cursor: pointer;
}

li:focus-within a {
  outline: none;
}

ul li ul {
  z-index:100;
  background: #2e2e2e;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width:100%;
}
.headerNav{
  background-color: #2e2e2e;
  width: 1000px;
  margin: auto;
  display: flex;

  padding: 3px;
}

.headerNav a{
  text-align: center;
  text-decoration: none;
  padding: 5px;
  color: #d1d0cd;
  font-size: 16px;
  margin: 0px 5px;
}

.headerNav .active{
  background: linear-gradient(#00000000, #124f88, #00000000);
  border-radius: 10px;
}


.socialMedia {
  padding: 5px;
}

/* BODY */

.main {
  width:1000px;
  margin: auto;
  display:flex;
  max-height:78vh;
  top: 0;
  overflow-y:auto;
}

.mainDraft{
  max-height:78vh;
  top: 0;
  overflow-y:auto;
}

/* SCROLLBAR DESIGN */
/* 1. Base container styling */
.custom-scrollbar {
  width: 300px;
  height: 200px;
  overflow-y: auto; /* Enables vertical scrolling only when needed */
  
  /* 2. Modern W3C Standard (Firefox & modern browsers) */
  scrollbar-width: thin;          /* Options: auto, thin, none */
  scrollbar-color: #888888 #f1f1f1; /* thumb color | track color */
}

/* 3. WebKit Engine Styling (Chrome, Safari, Edge) */
/* Total width of the vertical scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

/* Background track area */
.custom-scrollbar::-webkit-scrollbar-track {
  background: #d1d0cd;
  border-radius: 5px;
}

/* Draggable handle (thumb) */
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #124ff8;
  border-radius: 5px;
}

/* Thumb behavior on hover */
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555555;
}