
/* 1. Default Theme (monochrome) */
:root {
  --orange: #FFB000;
  --orangeHover: #FFC999;
  --darkgray: #1f2021;
  --bg-color: #000;
  --text-color: #fff;
}

/* 2. Secondary Theme (paper) */
[data-theme="secondary"] {
  --orange:#D27F4B;
  --orangeHover: #FFB000;
  --bg-color: #f5f5f5;
  --text-color: #000;
}

body {
	background-color:var(--bg-color) !important;
	color:var(--text-color);
	font-family: Arial, sans-serif;
}

h1 {
	font-weight:bold;
	font-size:2.7rem;
	color:var(--orange);
	margin-bottom:3rem;
}
h2 {
	margin-top:3rem;
	margin-bottom:2.5rem
	font-weight:500;
	font-size:1.2rem;
	color:var(--orange);
}
h3 {
	font-weight:500;
	font-size:1.1rem;
	color:var(--orange);
	margin-bottom:2.25rem;
}	
p {margin-bottom:2rem;}
a, .link, strong {color:var(--orange);}
p a {color:var(--orangeHover);}
p.sortby a {cursor:pointer;}

li {padding: .25rem;}

#Logit-Logo {
	width:4rem; 
	float:right; 
	margin-top:-5rem;
	margin-right:1rem;
}

button {
  background-color: var(--orange);
  border: 1px solid white;
  color: var(--darkgray);
  padding: .5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  border-radius:.25rem;
  cursor:pointer;
}

#login-button, #new-user-button {background-color:green;color:white;}

	
#screen-container {
    width: 100%;
    min-height: 95vh;    
    display: flex;
    flex-direction: column;
    /*align-items: left;*/
}
#reloadPage {
	font-size: 2rem !important;
	position:fixed;
	top:1rem;
	right:1.5rem;
	color:#FFB000;
	cursor: pointer;
}
#infoPage {
	font-size: 2rem !important;
	position:fixed;
	top:4rem;
	right:1.5rem;
	color:blue;
	cursor: pointer;
	z-index: 100;
}

#pubSubmit {
	font-size: 2rem !important;
	position:fixed;
	top:16rem;
	right:1.5rem;
	color:white;
	cursor: pointer;
	z-index: 100;
	background-color:var(--darkgray);
}

.fa-save {}
#submit-note-button {
	position: fixed;
	right: 1.5rem;
	top: 7rem;
	font-size: 2rem !important;
	cursor: pointer;
	color:green;
}
#loading {
	display:none;
	position: fixed;
	right: 1.5rem;
	top: 7rem;
	font-size: 2rem !important;
	cursor: pointer;
	color:#FFB000;
}
#csv {
	display:none;
	position: fixed;
	right: 1.5rem;
	top: 10rem;
	font-size: 1.5rem !important;
	cursor: pointer;
	color:lightgreen;
}
#share {
	display:none;
	position: fixed;
	right: 1.5rem;
	top: 13rem;
	font-size: 1.5rem !important;
	cursor: pointer;
	color: white;
}
#theme {

	position: fixed;
	left: .5rem;
	bottom:1rem;
	font-size: 1.5rem !important;
	cursor: pointer;
	color: var(--orange);
}

input:focus, #notes:focus {outline: none;}

#flypaper {display:none;}

#subject, #notes-textarea {
	width:50%;
	border:none;
	background-color:var(--bg-color);
	color:var(--text-color);;
}

#subject {
	padding:0;
}

.fa-trash {float:left;}

#mini-menu .fa {
	margin-right:.8rem;
	cursor: pointer;
	font-size:1.3rem;
	}
#mini-submit {color:green;}

.new-user {display:none;}
#create-account {
	text-decoration:underline;
	color:blue;
	cursor:pointer;
}



.noteimage {max-width:80%;}

.note-list {margin-bottom:2.5rem;}

.dates {
	color:var(--orange);
	margin-left: 1rem;
	margin-bottom: .2rem;
}
.dates-public {
	color:var(--orange);
}


.public-table {
	border:none;
	max-width:50rem;
	min-width:400px;
	margin-left:2rem;
	margin-bottom:3rem;
}

.public-table td, .public-table th {
	border:none;
	padding: .5rem;
	vertical-align:top;
}

/* .public-table tr:nth-child(even){background-color: #f2f2f2;} */

.public-table tr:hover {background-color: #333348;}

.subjectlists li a {text-decoration:none;}
.subjectlists li{
	padding: .25rem 0 .2rem .5rem;
	list-style: none;
	border-left: 3px solid var(--text-color);
	margin-bottom: 3px;
	border-top: 3px solid var(--bg-color);
	border-bottom: 3px var(--bg-color);
}
.subjectlists li:hover {
	background-color: #333348;
	border-left: 3px solid #333348;
}

.public-table th {
	padding:.5rem;
	text-align: left;
	color: var(--orange);;
}

table, th, td {
  border: 1px solid white;
  border-collapse: collapse;
}

#notes, #old-notes {
	width:90%;
	min-height:5rem;
	color:var(--text-color);
	margin-top:1rem;
	font-size: 16px;
}

#about, #subjectspage {
	margin:1rem 0 3rem 0;
	max-width:50rem;
	min-height:2rem;
	color:var(--text-color);
	font-size: 16px;
}

#public-qr-submit {
	margin:0rem 0 3rem 0;
	max-width:50rem;
	min-height:2rem;
	color:var(--text-color);
	font-size: 16px;
}

.cursor {position: relative;}


/*for autocomplete*/
/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
  max-width:50rem;
}

input {
  border: 1px solid transparent;
  background-color: var(--bg-color);
  padding: 10px;
  font-size: 16px;
  color:#fff;
}

input[type=text] {
  background-color: var(--bg-color);
  width: 100%;
  color:#fff;
}

input[type=submit] {
  background-color: var(--bg-color);
  color: var(--text-color);
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
	width: 90%;
	z-index: 99;
	top: 100%;
	left: 0;
	right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: var(--bg-color);

}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color:var(--bg-color);
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: var(--text-color); 
}

.loggedout img, .info-image {
	border: 4px solid white;
	border-radius:3px;
	margin-bottom:2rem;
}

/*login modal*/
#pw-reset {display:none;}
/* The Modal (background) */
.modal {
	position: absolute; 
	z-index: 1; 
	top: 3%;

	width:100%;
}

/* Modal Content/Box */
.modal-content {
	background-color: white;
	margin: 5% auto 15% auto;

	border-radius: 5px;
	width: 50%; 
	min-width:300px;
	color:black;
	padding:10px;
	font-size:.9rem;
	border: 4px solid var(--orange);
}
.modal-content p {margin:.2rem 0 .4rem 0;}
.modal-content ul {margin:.2rem 0 1rem 0;}
.modal-content li {padding:0;}
.container input,.container label {
	background-color: white;
	margin: .3rem;
	color:black;
	border-radius: 3px;}
	
.container input {
	border:1px solid black;
	width:80%;
	padding:.2rem;
}

/* The Close Button (x) */
.close {
	float:right;
	color: black;
	font-size: 35px;
	font-weight: bold;
	cursor:pointer;
}

.register-user {margin: 0 2rem 1rem 2rem;}

/*profile menu*/
#user {cursor: pointer;}
#user, #subject {font-size:1.2rem;}
#dropdownList {display:none;}
.dropdown-list {
  position: absolute;
  top:2rem;
  background-color: var(--bg-color);
  padding: 3px;
  border-radius: 5px;
  border:1px solid white;
}

.dropdown-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-list li {
  display: block;
  padding: 3px;
  cursor: pointer;
}

.dropdown-list a {
  text-decoration: none;
  color: var(--orange);;
}

.dropdown-list a:hover {
  color: var(--orangeHover);
}

/*for subject list*/
.grid-container {

}

.grid-item {
	padding: 20px;
	float: left;
}

#footer {
	margin-top: auto;
	font-size:.9rem;
	text-align: center;
}