/*Main*/
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Quicksand:wght@300..700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: rgb(20, 20, 20);
    color: rgb(255, 255, 255);
    margin: 0;
}

h1 {
    color: rgb(255, 255, 255);
}
  
p {
    font-size: 17px;
}

a {
    color: rgb(13, 83, 213);
    text-decoration: none;
}

/*Header*/
header {
    background-color: rgb(35, 35, 35);
    overflow: hidden;
    position: sticky;
    padding: 10px;
    top: 0;
    z-index: 10;
}

header img {
    width: 150px;
    transition: 0.2s;
}

header img:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.right-header img {
    width:13px;
}

.right-header {
    float: right;
    margin-right: 25px;
    margin-top: 10px;
}

/*Events*/
.announcement {
    background-color: rgb(225, 145, 55);
    padding: 5px;
    text-align: center;
}

.announcement a {
    color: rgb(13, 83, 213);
    text-decoration: none;
}

/*SideNav*/
.sidenav {
    background-color: rgb(35, 35, 35);
    height: 100%;
    width: 60px;
    position: fixed;
    z-index: 1;
    top: 50px;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
    text-align: center;
}

.sidenav button {
    padding: 10px;
}

.sidenav img {
    width: 25px;
}

/*Button*/
.button {
    background: rgb(255, 255, 255);
    font-family: 'Quicksand', sans-serif;
    color: rgb(0, 0, 0);
	  border: none;
  	border-radius: 10px;
  	padding: 10px 20px;
	  margin: 5px;
  	font-size: 15px;
  	text-align: center;
  	transition: 0.2s;
}

.button:hover {
    background: rgb(200, 200, 200);
	  transition: 0.2s;
}

.button a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.button-red {
	  background: rgb(200, 0, 0);
    font-family: 'Quicksand', sans-serif;
	  border: none;
  	border-radius: 10px;
  	padding: 10px 20px;
	  margin: 5px;
  	color: rgb(255, 255, 255);
  	font-size: 15px;
  	text-align: center;
  	transition: 0.2s;
}

.button-red:hover {
	  background: rgb(150, 0, 0);
  	transition: 0.2s;
}

.button-red a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.button-green {
	  background: rgb(0, 225, 0);
    font-family: 'Quicksand', sans-serif;
	  border: none;
  	border-radius: 10px;
  	padding: 10px 20px;
	  margin: 5px;
  	color: rgb(255, 255, 255);
  	font-size: 15px;
  	text-align: center;
  	transition: 0.2s;
}

.button-green:hover {
	  background: rgb(0, 200, 0);
  	transition: 0.2s;
}

.button-green a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.button-blue {
	  background: rgb(0, 150, 255);
    font-family: 'Quicksand', sans-serif;
	  border: none;
  	border-radius: 10px;
  	padding: 10px 20px;
	  margin: 5px;
  	color: rgb(255, 255, 255);
  	font-size: 15px;
  	text-align: center;
  	transition: 0.2s;
}

.button-blue:hover {
	  background: rgb(0, 100, 255);
  	transition: 0.2s;
}

.button-blue a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.button-gray {
	  background: rgb(50, 50, 50);
    font-family: 'Quicksand', sans-serif;
	  border: none;
  	border-radius: 10px;
  	padding: 10px;
	  margin: 5px;
  	color: rgb(255, 255, 255);
  	font-size: 15px;
  	text-align: center;
  	transition: 0.2s;
}

.button-gray:hover {
	  background: rgb(60, 60, 60);
  	transition: 0.2s;
}

.button-gray a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

/*Load Button*/
input[type="file"] {
    display: none;
}

.custom-file-upload {
    color: rgb(255, 255, 255);
    font-family: 'Quicksand', sans-serif;
}

/*Container*/
.container {
    background-color: rgb(35, 35, 35);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    width: 60%;
    padding: 25px;
    margin: 25px;
}

.container-left {
    float: left;
    margin-right: 25px;
}

.container-right {
    float: right;
    margin-left: 25px;
}

.container-small {
    background: none;
    border: 1px solid rgb(25, 25, 25);
    border-radius: 10px;
    max-width: 200px;
    padding: 20px;
    margin-top: 0px;
    margin-bottom: 25px;
}

.container-window {
    background-color: #242424;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    width: 40%;
    text-align: center;
    margin: 25px;
    color: white;
}

.container-window h3 {
    background-color: #202020;
    border-bottom: 1px solid black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px;
    margin: 0;
}

.window-margin {
    margin: 25px;
}

/*Input*/
.input {
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    font-family: 'Quicksand', sans-serif;
}

textarea {
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Quicksand', sans-serif;
}

  .avatar {
    border-radius: 50%;
    border: 1px solid black;
  }

  .soon {
    font-size: 20px;
    color: red;
  }
  
  .profile {
      border-radius: 20%;
    border: 1px solid black;
  }
  
/*Error*/
.error {
    color: rgb(200, 0, 0);
    font-size: 12px;
    padding: 10px;
    margin: auto;
    width: 50%;
}

/*Square*/
.square {
    border: none;
    border-radius: 10px;
    width: 100px;
    margin: 5px;
    transition: 0.2s;
}

.square:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

/*Popup*/
.popup {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background-color: rgb(35, 35, 35);
    border: none;
    border-radius: 10px;
    max-width: 30%;
    padding: 20px;
    text-align: center;
}
.popup:target {
    display: flex;
}

/*Scroller*/
.scroll-container {
    background-image: url('/assets/images/checkers.png');
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: rgb(45, 45, 45);
}

::-webkit-scrollbar-thumb {
    background: rgb(55, 55, 55);
    border-radius: 50px;
}

/*Table*/
td, th {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: rgb(20, 20, 20);
}