

@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 0 0 0;
  justify-content: space-between;
}
 
#navLinksCont {
  /* border: 1px solid grey; */
  height: 100%;
  margin-left: 75px;
  background-color: #171717;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
}

.navLink {
  color: white;
  text-decoration: none;
  margin-right: 55px;
  font-size: 20px;
  padding: 15px 10px 15px 10px;
}

.navLink:hover {
  color: #797C7F;
}

/* Highlight the active nav link (folders page) */
.navLink.active {
  color: #F6DD07;
  font-weight: 700;
}

 #navProfileImage {
	 border: 1px solid grey;
	 display: flex;
	 height: 40px;
	 width: 40px;
	 margin: 0px 25px 0px 0px;
	 border-radius: 50px;
	 cursor: pointer;
 }

#logo {
  /* border: 1px solid grey; */
  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: 0 0 0 15px;
}

#addFolderButton {
  height: 50px;
  width: 100px;
  background-color: #F6DD07;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  margin: 0 15px 0 0;
  font-size: 60px;
}

#addFolderButton:hover {
  background-color: #D2BC00;
  transition: background-color 0.3s ease;
}

#folderCont {
  /* border: 1px solid grey; */
  width: 100%;
  height: 65vh;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 40px;
  overflow: auto;
}

#folderCont::-webkit-scrollbar {
  width: 5px;
}

#folderCont::-webkit-scrollbar-thumb {
  background-color: #797C7F;
  border-radius: 20px;
  cursor: grab;
}

.folderDiv {
  /* border: 1px solid grey; */
  width: 250px;
  height: 150px;
  background-color: #444243;
  border-radius: 20px;
  margin-left: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}



.folderDiv:hover {
  background-color: #292929;
  transition: background-color 0.3s ease;
}

.folderDivName {
  /* border: 1px solid grey; */
  font-size: 25px;
  margin: 20px 0 0 0;
  overflow: hidden;
  max-height: 90px;
}

.setCount {
  /* border: 1px solid grey; */
  font-size: 15px;
  margin: 0 0 0px 0;
}

.folderDivName, .setCount {
  width: 80%;
}

.optionsCont {
  /* border: 1px solid grey; */
  position: relative;       /* allows positioning menuCont absolutely */
  width: 100%;
  display: flex;
  justify-content: center;  /* centers setCount horizontally */
  align-items: center;
  margin-bottom: 20px;
}

.menuCont {
  position: absolute;       /* position over or behind setCount */
  right: 10px;              /* distance from the right edge */
  width: 20px;              /* size of the ellipsis button */
  height: 20px;
  background-image: url("ellipsis_icon/ellipsis_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  border-radius: 5px;

  /* Optional hover effect */
  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; /* hide initially */
  justify-content: center;
  align-items: center;
  color: red;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;


	 font-family: 'Geist UltraLight', sans-serif;
	 letter-spacing: -1px;

  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%;
}

#context-menu {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  background-color: #595B5E;
  color: red;
  font-size: 20px;



	 font-family: 'Geist UltraLight', sans-serif;
	 letter-spacing: -1px;

  border-radius: 10px;
  cursor: pointer;
  z-index: 1000;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

#context-menu:hover {
  background-color: #373737;
}

