

@font-face {
  font-family: 'Geist Light', sans-serif;
  src: url('fonts/Geist-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geist UltraLight', sans-serif;
  src: url('fonts/Geist-UltraLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geist Bold';
  src: url('fonts/Geist-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #070707;
  color: white;
  	 font-family: 'Geist UltraLight', sans-serif;
	 letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body ::selection {
  background: #F6DD07;
  color: black;
}

#contentCont {
	/* border: 1px solid grey; */
  width: 95%;
  max-width: 1500px;
  height: 95vh;
}

#navBar {
  background-color: #171717;
  width: 100%;
  height: 7vh;
  min-height: 75px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 25px 0px 0px 0px;
  justify-content: space-between;
}

#navLinksCont {
  height: 100%;
  margin: 0px 0px 0px 75px;
  background-color: #171717;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
}

.navLink {
  color: white;
  text-decoration: none;
  margin: 0px 55px 0px 0px;
  font-size: 20px;
  padding: 15px 10px 15px 10px;
}

.navLink:hover {
  color: #797C7F;
}

 #navLinkNotes {
	color: #F6DD07;
 }

  #navProfileImage {
	 border: 1px solid grey;
	 display: flex;
	 height: 40px;
	 width: 40px;
	 margin: 0px 25px 0px 0px;
	 border-radius: 50px;
	 cursor: pointer;
 }

#logo {
  height: 60px;
  width: 150px;
  background-image: url('polyglot_logo.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#headingCont {
	/* border: 1px solid grey; */
  display: flex;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: flex-end;
  justify-content: space-between;
}

h1 {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -2px;
  margin: 0px 0px 0px 15px;
}

#addNoteButton {
  height: 50px;
  width: 100px;
  background-color: #F6DD07;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  margin: 0px 15px 0px 0px;
}

#addNoteButton:hover {
  background-color: #D2BC00;
  transition: background-color 0.3s ease;
}

#noteCont {
  width: 100%;
  height: 65vh;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 40px;
  overflow: auto;
}

#noteCont::-webkit-scrollbar {
  width: 5px;
}

#noteCont::-webkit-scrollbar-thumb {
  background-color: #797C7F;
  border-radius: 20px;
  cursor: grab;
}

.noteDiv {
  width: 250px;
  height: 150px;
  background-color: #797C7F;
  border-radius: 20px;
  margin-left: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.noteDiv:hover {
  background-color: #686A6D;
  transition: background-color 0.3s ease;
}

.noteDivTitle {
  font-size: 25px;
  margin: 20px 0px 0px 0px;
  overflow: hidden;
  max-height: 90px;
  width: 80%;
}

.optionsCont {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* push menuCont to the far right */
  align-items: center;
  padding: 0 10px 20px 10px; /* optional padding at bottom and sides */
  box-sizing: border-box;
}

.menuCont {
  width: 20px;
  height: 20px;
  background-image: url("ellipsis_icon/ellipsis_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.menuCont:hover {
  opacity: 0.6;             /* subtle visual feedback on hover */
}



#context-menu {
  position: absolute;
  background-color: #595B5E;
  height: 50px;
  width: 200px;
  display: none;
  justify-content: center;
  align-items: center;
  color: red;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  font-family: 'Geist UltraLight', sans-serif;
  z-index: 1000;
}

#context-menu:hover {
  background-color: #373737;
}

#emptyLibraryMessage {
  color: #8A8A8A;
  font-size: clamp(24px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
  height: 60%;
}
