@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900");

::selection {
	color: white;
	background-color: #47bb83;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #999;
	transition: background 0.1s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
	transition: background 0.1s ease;
}

body {
	margin: 0px;
	font-family: "Rubik", Arial, sans-serif;
    overflow-x: hidden;
}

header {
	display: flex;
	background-color: #f5f5f5;

	justify-content: flex-end;
	align-items: center;
	gap: 15px;

	padding: 5px;
}

h1 {
    font-weight: 450;
}

#time {
	font-size: 13px;
	margin-bottom: 1px;
}

#logout span {
	font-size: 15px;
	margin-top: 2px;
	margin-right: 5px;
	color: black;
	transition: all 0.3s ease;
}

#logout span:hover {
	color: #c5221f;
	transition: all 0.3s ease;
}

.left-header {
    position: absolute;
    left: 5px;
    display: flex;
    align-items: center;
}

#back span {
	font-size: 15px;
	margin-top: 4px;
	margin-right: 5px;
	color: black;
	transition: all 0.3s ease;
}

#back span:hover {
	color: #47bb83;
	transition: all 0.3s ease;
}

main {
	margin: 5px;
}

#greeting {
	font-weight: 400;
}

#greeting:before {
	content: attr(data-before);
}

#greeting span {
	color: #47bb83;
}

#dash-header {
	display: flex;
	justify-content: space-between;
}

#quick-link-container {
	display: flex;
	gap: 20px;
	margin-top: 10px;
	margin-right: 10px;
}

.container {
	display: flex;
	border: 1px solid;
	padding: 25px;
	border-radius: 5px;
	justify-content: center;
	align-items: center;

	width: 50px;
	height: 10px;

	transition: all 0.3s ease;
}

.container img {
	height: 300%;
}

#classroom {
	border-color: rgb(243, 181, 8);
}

#classroom:hover {
	background-color: rgba(243, 181, 8, 0.3);
	transition: all 0.3s ease;
}

#skyward {
	border-color: #2531a9;
}

#skyward:hover {
	background-color: rgba(37, 49, 169, 0.3);
	transition: all 0.3s ease;
}

#gmail {
	border-color: #c5221f;
}

#gmail:hover {
	background-color: rgba(197, 34, 31, 0.3);
	transition: all 0.3s ease;
}

#sk-web {
	border-color: #700203;
}

#sk-web:hover {
	background-color: rgba(112, 2, 3, 0.3);
	transition: all 0.3s ease;
}

#sk-web img {
	height: 450%;
}

h6 {
	color: #47bb83;
	text-transform: uppercase;
	margin: 5px 5px 10px 5px;
}

.quick-link {
	display: flex;
	gap: 5px;
	padding: 5px;
	background-color: #f5f5f5;
	margin-bottom: 5px;
	width: 60%;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: black;
}

.quick-link:before {
	content: "\e157";
	font-family: "Material Symbols Outlined";
}

.quick-link:hover {
	text-decoration: underline;
	color: #47bb83;

	transition: all 0.3s ease;
}

.quick-link:hover:before {
	text-decoration: none !important;
}


input {
    outline: none;
    border: 1px solid #CECECE;
    padding: 5px;
    font-family: 'Inter', sans-serif;
}

input:focus {
    border-color: #949494;
    transition: border-color 0.3s ease-in-out;
}

input[type="submit"] {
    padding: 5px;
}

input[type="submit"]:hover {
    background-color: #49bc84;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

#todo-container {
    width: 100%;
    display: flex;
    margin-top: 5px;
    flex-direction: column;
    gap: 5px;
}

.todo {
    padding: 5px;
    background-color: #F5F5F5;
    border-radius: 5px;
    width: 60%;
    transition: all 0.3s ease;
}

.todo:hover {
    background-color: #eeeeee;
    transition: all 0.3s ease;
}

.todo:hover .delete-button {
    opacity: 1;
    transition: all 0.1s ease;
}

.todo input[type="checkbox"] {
    accent-color: #49bc84;
}

.todo input[type="checkbox"]:checked {
    text-decoration: line-through;
}

.delete-button {
    float: right;
    font-size: 20px!important;
    color: #c5221f;
    opacity: 0;
    font-weight: 300!important;
    transition: all 0.1s ease;
    cursor: pointer;
    user-select: none;
}

.checked {
    text-decoration: line-through;
    color: grey;
}

table {
    padding: 5px;
}

.table-title {
    text-align: right;
}

#classes-container {
	display: flex;
	border-radius: 5px;
	padding: 5px;
	flex-wrap: wrap;
	gap: 15px;
}

.class {
	padding: 5px;
	font-family: "Rubik", sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex-wrap: wrap;
	color: white;
	border-radius: 5px;
	width: 200px;
	height: 200px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.class:hover .class-title {
	/* text-decoration: underline; */
	transition: all 0.3s ease;
}

.class .class-title {
	font-size: 24px;
	font-weight: 600;
}

.class .class-info {
	text-transform: uppercase;
	font-size: 13px;
}

.class:hover {
	filter: brightness(90%);
	transition: filter 0.3s ease;
}

#med-careers {
	background-color: #afd9e4;
}

#health {
	background-color: #d91a60;
}

#phy-sci {
	background-color: #4da3a8;
}

#avid {
	background-color: #202d48;
}

#h-ela {
	background-color: #97c364;
}

#njrotc {
	background-color: #501c1a;
}

#asl-1 {
	background-color: #775ba6;
}

#algebra {
	background-color: #009788;
}

#geometry {
    background-color: #FBBC04;
}