/* Main Container --------------------------------------------------------------------------------------------------- */
#main-container {
  position: relative;
  left: 25vw;
  width: 50vw;
  height: 80vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;            
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
  animation: fade 0.5s;
}

/* Search ----------------------------------------------------------------------------------------------------------- */
#search {
  width: 100%;
  border-style: none; /* Removes extra content on the right */
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 1rem;
  text-align: center;
  color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--main80);
  background-color: var(--main05);
  animation: fade 2s;
}

#search:focus { 
  outline: none; /* Remove obnoxious outline */
} 

#search::placeholder {
  color: var(--main80);
}

/* Bookmarks -------------------------------------------------------------------------------------------------------- */
#bookmarks-container {
  display: grid;
  column-gap: 10rem;
  row-gap: 2rem;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(3, 1fr);    /* 3 equal rows */
}
.bookmark-box {
  font-size: 1rem;
  border-left: 5px solid var(--main80);
  transition: border-left 0.1s;
}
.bookmark-box:hover {
  border-color: var(--white);
}
.bookmark-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 1rem;
  color: var(--white);
}
.bookmark-links {
  max-height: 5rem;
  overflow-y: auto;
  padding-left: 1rem;
}
.bookmark-links:not(:hover) {
  scrollbar-color: rgba(0, 0, 0, 0) transparent;
  transition: scrollbar-color 0.1s;
}
.bookmark-link-line a:hover {
  color: var(--white);
  transition: color 0.1s;
}
.bookmark-link {
  color: var(--main80);
  text-decoration: none;
}
.bookmark-link2 {
  color: var(--main40);
  text-decoration: none;
  padding: 0px 0.25rem;
}
