

@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 {
	/* border: 1px solid grey; */
	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;
 }
 
 #navLinkSets {
	color: #F6DD07;
 }

  #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: 0px 0px 0px 15px;
	 
 }
 
 #addSetButton {
	 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: 0px 15px 0px 0px;
 }
 
 #addSetButton:hover {
	 background-color: #D2BC00;
	 transition: background-color 0.3s ease;
 }
 
 #setCont {
	 /* border: 1px solid grey; */
	 width: 100%;
	 height: 65vh;
	 display: flex;
	 flex-wrap: wrap;
	 align-content: flex-start;
	 margin-top: 40px;
	 overflow: auto;
	 
 }
 
 #setCont::-webkit-scrollbar {
	 width: 5px;
	 
 } #setCont::-webkit-scrollbar-thumb {
	 background-color: #797C7F;
	 border-radius: 20px;
	 cursor: grab;
 }
 

.setDiv {
	/* border: 1px solid grey; */
	width: 250px;
	height: 150px;
	background-color: #171717;
	border-radius: 20px;
	margin-left: 15px;
	margin-bottom: 15px;
	
	display: flex;
	flex-direction: column;
	
	align-items: center;
	justify-content: space-between;
	
	cursor: pointer;
	
	
}

.setDiv:hover {
	background-color: #111111;
	transition: background-color 0.3s ease;
}

.setDivName {
	/* border: 1px solid grey; */
	font-size: 25px;
	margin: 20px 0px 0px 0px;
	overflow: hidden;
	max-height: 90px;
}

.termCount {
	/* border: 1px solid grey; */
	font-size: 15px;
	margin: 0px 0px 0px 0px;
}

.setDivName, .termCount {
	width: 80%;
}


.optionsCont {
  /* border: 1px solid grey; */
  position: relative;       /* allows positioning menuCont absolutely */
  width: 100%;
  display: flex;
  justify-content: center;  /* centers termCount horizontally */
  align-items: center;
  margin-bottom: 20px;
}

.menuCont {
  position: absolute;       /* position over or behind termCount */
  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;
  font-weight: 700;
  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%;
}
