/* The sidebar menu */
body {
    background-color: #1f2640;
    width:100%
}
.sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

/* The sidebar links */
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
    color: #f1f1f1;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul ul {
    padding-left: 25px;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.page_titel{
    margin-top: 0;
    color: lightgrey;
}
#namefield {
    position: absolute;
    width: 200px;
    top: 0;
    right: 0;
    font-size: 36px;
    left: 0;
}
#namefield input[type=button]{
    width: 60px;
}
#namefield input[type=text]{
    width: 130px;
}
#namefield p {
    color: #ffffff;
    top: 0;
    right: 0;
    font-size: 36px;
    margin: 0 0 0 10px;
    padding-top: 8px;
}

/* The button used to open the sidebar */
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s; /* If you want a transition effect */
    padding: 20px;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}

.full_table{
    background: rgba(17,17,17,0.5);
    border-radius: 15px;
    width: 95%;
    margin: 5px 5px 5px 5px;
    padding: 10px 5px 5px 7px;
}
.table_title{
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    float: left;
}
table{
    width: inherit;
    color: #111111;
    background: rgba(17,17,17,1);
    border-spacing: 0 1px;
}
th{
    padding: 10px 10px 10px 10px;
    background: #a1a1a1;
}
td {
    padding: 8px 8px 8px 8px;
}
td:nth-child(even){
    background: #f1f1f1;
}
td:nth-child(odd){
    background: #d5d5d5;
}

.grid-container {
    display: grid;
}
.grid-container-games{
    display: grid;
    grid-template-columns: auto auto auto;
}
.grid_item_0_0 {
    grid-column: 1;
    grid-row: 1;
}
.grid_item_0_1 {
    grid-column: 2;
    grid-row: 1;
}
hr {
    background: floralwhite;
}
.send_review_button {
    float: right;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #444444;
    color: #ffffff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: fit-content; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.edit_icon {
    width: 15px;
    margin-right: 15px;
    filter: invert(1);
    float: right;
}

input:invalid:not(:focus) { color: red; }
.error_message { display: none; }