@font-face { 
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Black.ttf) format("truetype");
}

@font-face { 
  font-family: "Russo One";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Russo_One/RussoOne-Regular.ttf) format("truetype");
}

body {
  margin: 0px;
}

.borderable {
    border: 1px solid black; /* 1px width, solid style, black color */
}

.centerable {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.columnable {
	display: flex;
	flex-direction: column;
}

.halfwidth {
  width: 50%;
}

.paddable {
  padding: 20px;
}

.pointable {
	cursor: pointer;
}

.rowable {
	display: flex;
	flex-direction: row;
}
@font-face { 
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Black.ttf) format("truetype");
}

@font-face { 
  font-family: "Russo One";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Russo_One/RussoOne-Regular.ttf) format("truetype");
}

.edition {
	font-family: Roboto, sans-serif;
	font-size: 1.0rem;
	font-size: 0.75rem;
	font-weight: 500;
}

.errorMessage {

}

.loginBody {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 4px;
}

.loginButton {
	height: 40px;
	margin-top: 3px;
	font-size: 1.2rem;
}

.loginLabel {
	font-family: "Russo One", Arial, "Courier New", Courier, monospace;
	font-size: 1.2rem;
}

.loginLogoRoot {
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loginPageRoot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.loginRoot  {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 100%; /* Make the input take up all the space in the div */
}
/* Arrow Styles */
:root {
	--arrowcolor: yellow;
	--arrowsize: 20px;
	--arrowsizehover: 25px;

	--secondaryTopBarHeight: 50px;
	--topBarHeight: 50px;
}

@font-face { 
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Regular.ttf) format("truetype");
}

@font-face { 
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Bold.ttf) format("truetype");
}



.arrowLeft {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsize) solid transparent;
	border-bottom: var(--arrowsize) solid transparent; 
	
	border-right: var(--arrowsize) solid var(--arrowcolor);
	cursor: pointer;
}           

.arrowLeft:hover {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsizehover) solid transparent;
	border-bottom: var(--arrowsizehover) solid transparent; 
	
	border-right: var(--arrowsizehover) solid var(--arrowcolor);
}           

.arrowLeft:active {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsize) solid transparent;
	border-bottom: var(--arrowsize) solid transparent; 
	
	border-right: var(--arrowsize) solid var(--arrowcolor);
} 

.arrowRight {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsize) solid transparent;
	border-bottom: var(--arrowsize) solid transparent; 
	
	border-left: var(--arrowsize) solid var(--arrowcolor);
	cursor: pointer;
}           

.arrowRight:hover {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsizehover) solid transparent;
	border-bottom: var(--arrowsizehover) solid transparent; 
	
	border-left: var(--arrowsizehover) solid var(--arrowcolor);
}           

.arrowRight:active {
	width: 0; 
	height: 0; 
	border-top: var(--arrowsize) solid transparent;
	border-bottom: var(--arrowsize) solid transparent; 
	
	border-left: var(--arrowsize) solid var(--arrowcolor);
} 

.arrow {
	align-items: center;
	display: flex;
	justify-content: center;	
}

.baseCycleControl {
	border-radius: 30px;
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
	overflow-y: hidden;
}

.buttonBackground {
	align-items: center;
	border-radius: 4px;
	background-color: #000055;
	color: white;
	cursor: pointer;
	display: inline-flex;
	font-family: 'Roboto-Bold';
	font-size: 1.0rem;
	justify-content: center;
	padding: 10px;
	text-transform: uppercase;
	margin: 2px;
}

.buttonBackground:active {
    box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
   	transform: translateY(4px);	
}

.classicComboBox {

}

.classicComboItem {
	display: flex;
	align-items: left;
	padding: 8px;
	cursor: pointer;
	background-color: transparent;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.classicComboItemImg {
	width: 20px;
	height: 20px;
}

.classicComboItemPicBorder {
	border-radius: 10px;
    cursor: pointer;
	height: 20px;
	margin-right: 8px;
	object-fit: cover;
	width: 20px;
}

.classicComboList {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	border: 1px solid #ccc;
	border-radius: 0 0 4px 4px;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	max-height: 200px;
	overflow-y: auto;
	box-sizing: border-box;
	z-index: 10;
}

.classicComboText {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3px 3px;
	border: 1px solid #888;
	border-radius: 3px;
	background-color: white;
	height: 24px;
	box-sizing: border-box;
	font-size: 12px;
}

.classicLabel {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-weight: bold;
	font-size: 0.5rem;
}

.classicLineEdit {
}

.commentBody {
	margin: 10px;
}

.commentRoot {
  /* Configuration Variables */
  --note-bg: #fff7d1;      /* Classic Post-it yellow */
  --note-fold-bg: #e6dca8; /* Slightly darker shade for the fold */
  --fold-size: 30px;       /* Size of the corner fold */
  
  position: relative;
  width: 250px;
  padding: 20px;
  font-family: sans-serif;
  color: #333;
  
  /* 1. The "Cut" */
  /* This gradient makes the top-right corner transparent */
  background: linear-gradient(
    225deg, 
    transparent var(--fold-size), 
    var(--note-bg) 0
  );
  
  /* 2. The Main Drop Shadow */
  /* Note: regular box-shadow won't work because the corner is transparent.
     We use filter: drop-shadow to follow the irregular shape. */
  filter: drop-shadow(3px 5px 5px rgba(0,0,0,0.2));

/* Interaction Styles */
  cursor: text;         /* Shows the 'I-beam' cursor */
  outline: none;        /* Removes the default blue browser focus glow */
  resize: both;         /* Optional: allows user to drag-resize the note */
  overflow: auto;       /* Required if you allow resizing */
  min-height: 100px;    /* Ensures the note doesn't vanish if empty */
  
  /* Text handling */
  line-height: 1.5;  
}

/* Optional: Change look when the user clicks to type */
.commentRoot:focus {
  background: linear-gradient(
    225deg, 
    transparent var(--fold-size), 
    #fffce0 0 /* Slightly brighter yellow when active */
  );
}

/* 3. The "Flap" */
.commentRoot::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--fold-size);
  height: var(--fold-size);
  
  /* This creates the triangle shape for the flap */
  background: linear-gradient(
    225deg, 
    transparent 50%, 
    var(--note-fold-bg) 0
  );
  
  /* Adds a tiny shadow specifically under the folded flap for depth */
  box-shadow: -2px 2px 3px rgba(0,0,0,0.15);
  
  /* Optional: Rounds the tip of the fold slightly for realism */
  border-bottom-left-radius: 4px; 
}

.controlLink {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-family: 'Roboto';
  font-size: 0.8rem;
  margin-left: 10px;
  margin-right: 10px;
}

.dateTimeLabel {
  font-family: 'Roboto';
  font-size: 0.7rem;
}

.editorFieldSpacer {
	margin-top: 10px;
}

.editorFieldDescription {
	font-family: 'Times New Roman', Times, serif;
	font-size: 0.6rem;
}

.editorFieldTitle {
	font-family: "Roboto-Regular";
	font-weight: 800;	
	font-size: 1.0rem;
}

.flexColumn {
	display: flex;
	flex-direction: column;
}

.keyable {

}

.lineEdit {
	padding: 3px;
}

.lineEditInput {
	border: none;
	font-family: 'Roboto-Regular';
	font-size: 1.1rem;
	outline: none;
	margin-right: 6px;
	width: 100%;
}

.logo {
	max-width: 100%;
	height: auto;
}

.searchBody {
    display: flex;
    flex-direction: row; 
    justify-content: flex-start;
    align-items: center;
}

.searchInput { 
    border: none; /* Remove the border */
    outline: none; /* Remove the outline */
    padding: 5px; /* Optional: Add some padding */
    margin-left: 5px; /* Optional: Add some space between the icon and the input */
    flex-grow: 1; /* Optional: Allow the input to grow */
}

.searchRoot {
	background-color: white; 
    padding: 10px; /* Optional: Add some padding inside the border */
    margin: 10px; /* Optional: Add some margin outside the border */
}

.secondaryTopBarPad {
	background-color: transparent;
	height: var(--secondaryTopBarHeight);
	width: 100%;
}

.secondaryTopBarRoot {
	align-items: center;
	display: flex;
	flex-direction: row;
	font-family: "Russo One", Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1.0rem;
	height: var(--secondaryTopBarHeight);
	left: 0;
	position: fixed;
	width: 100%;
	top: var(--topBarHeight);
	z-index: 100;
}

.spaceBetweenable { 
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.stringListItem {
	align-items: center;
	display: flex;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0rem;
	font-weight: 400;
	height: 40px;
	margin-left: 5px;
	width: 100%;
}

.stringListItemSelected {
	background-color: black;
	color: white;
	font-weight: 700;
	margin-left: 0px;
}

.stringListRoot {
	background-color: "white";
	overflow-x: hidden;
	overflow-y: scroll;
}

.toolButtonableButton {
	display: flex;
	align-items: center;
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	justify-content: center;
	margin-left: 3px;
	margin-right: 3px;
}

.toolButtonableIndicator {
	width: 90px;
	height: 5px;
	border-radius: 2.5px;
	margin-left: 3px;
	margin-right: 3px;
	margin-top: 2px;
}

.topBarRoot {
	background-color: grey;
	top: 0px;
	position: fixed;
	width: 100%;
	height: var(--topBarHeight);
	z-index: 1000;
}

.topBarBody {
	align-items: center;
	display: flex;
	flex-direction: row;
	font-family: "Russo One", Verdana, Geneva, Tahoma, sans-serif;
	font-size: 2.0rem;
	height: var(--topBarHeight);
	width: 100%;
}

.topBarPad {
	background-color: transparent;
	height: var(--topBarHeight);
	width: 100%;
}@font-face { 
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Black.ttf) format("truetype");
}

.circularImage {
	border-radius: 50%;
	object-fit: cover;
    cursor: pointer;
	border-width: 4px;
	border-style: solid;
}

.circularImageContainer {
	margin-top: 2px;
	margin-right: 5px;
    display: inline-block; /* Ensure the container fits the image size */
	cursor: pointer;
}

/* Initial image styles */
.circularImageContainer img {
    width: 50px;
    height: 50px;
    transition: transform 0.1s ease-in-out; /* Smooth transition */
}

/* Initial image styles */
.circularImageContainer div {
    width: 50px;
    height: 50px;
    transition: transform 0.1s ease-in-out; /* Smooth transition */
}

/* Hover effect */
.circularImageContainer:hover img {
    transform: scale(1.3); /* Scale the image to 110% */
}

.libraryItemSize {
    width: 100%;
    height: 100px;
}

.libraryMainTitle {
	font-family: "Roboto";
	font-size: 1.2rem;
}

.librarySecondaryTitle {
	font-family: "Courier New";
	font-size: 1.0rem;
	opacity: 0.6;
	margin-right: 10px;
}

.libraryVersion {
	opacity: 0.9;
}

.topBottomGlow {

}

.topBottomGlow:hover {

}@font-face { 
  font-family: "Russo One";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Russo_One/RussoOne-Regular.ttf) format("truetype");
}

@font-face { 
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Black.ttf) format("truetype");
}

.buttonRow {
  margin-top: 10px;
}
.flockHeader {
  background-color: brown;
  color: white;
  font-family: 'Roboto';
  font-size: 1.5rem;
  padding: 5px;
  width: 100%;
}

.flockRoot {
}

.lifeTrackControls {
  background-color: darkblue;
  color: white;
}

.lifeTrackLabel {
  color: white;
	font-family: "Russo One", Arial, "Courier New", Courier, monospace;
	font-size: 1.2rem;
}

.lifeTrackSubLabel {
  color: white;
	font-family: "Roboto", Arial, "Courier New", Courier, monospace;
	font-size: 0.7rem;
}

.metricsFilter {
}

.metricsStringList {
  background-color: white;
  opacity: 1.0;
  height: 150px;
}

.metricsText {
  color: white;
  font-family: "Roboto";
  font-size: 1.0rem;
}

.metricViewBackground {
    background: #2A7B9B;
    background: linear-gradient(185deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 65%, rgba(237, 221, 83, 1) 100%);
    border-radius: 20px;
    height: 300px;
    margin: 40px;
    padding: 10px;
    width: 100%;
}

.navigationDot {
  background: white;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.todoCheckable { 
  align-items: center;
  
  background-color: white;
  border-width: 3px;
  border-radius: 2px;
  border-style: solid;
  border-color: #333333;
  box-shadow: 0 0 1px 1px gray;
  cursor: pointer;
  display: flex;
  font-size: 0.8rem;
  height: 20px;
  justify-content: center;
  margin-right: 5px;
  width: 20px;
}

.todoHeader {
  align-items: center;
  background-color: #01796f;
  color: white;
  display: flex;
  flex-direction: row;
	font-family: "Russo One", Arial, "Courier New", Courier, monospace;
  font-size: 1.0rem;
  height: 40px;
  justify-content: space-between;
  width: 100%;
}

.todoInput {
  border: none;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  resize: none;
  width: calc(100% - 20px);
}

.turkeyHeader {
  background-color: darkslategray;
  color: white;
  font-family: 'Roboto';
  font-size: 1.0rem;
  padding: 5px;
  width: 100%;
}

.turkeyTimer {
  align-items: center;
  background-color: #333333;
  border-radius: 10px;
  display: flex;
  font-family: 'Roboto';
  font-size: 0.9rem;
  height: 30px;
  justify-content: center;
  width: 100px;
}@font-face { 
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: 
    url(/fonts/Roboto/static/Roboto-Black.ttf) format("truetype");
}

.landingSecondBar {
  background-color: #e7decc;
}