
body {
    line-height: 1.5;
    font-size: 30px;
    margin: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: #262626;
}

h5 {
    font-size:35px;
}

div.guesser {
    background-color: lightskyblue;
    color: black;
    border-radius: 10px;
    padding: 20px;
    margin: 2px;
    width: 90%;
}

div.finalscore {
    background-color: orchid;
    border-radius: 10px;
    color: black;
    padding: 20px;
    margin: 2px;
    width: 90%;
    min-height: 100px;
}

div.options {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: white;
    text-align: right;
}

input[type=checkbox] {
    width: 30px;
    height: 30px;
}

input[type=submit] {
    font-size: 30px;
    padding: 16px 32px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
}

select {
    font-size: 25px !important;
}

#id_of_darkmode_thing {
    text-decoration: underline;
    cursor: pointer;
    border: solid;
}

#player {
    transform: scale(2.5,2.5);
    transform-origin: top left;
    margin-bottom: 50px;
}

@media only screen and (min-width: 1024px) {

    body {
        font-size: 14px;
        line-height: 1.4;
        max-width: 75%;
    }

    h5 {
        font-size: 16px;
    }

    input[type=submit] {
        font-size: 16px;
        padding: 5px 5px;
        margin: 4px 2px;
        cursor: pointer;
        border: none;
    }

    input[type=checkbox] {
        width: 14px;
        height: 14px;
    }

    select {
        font-size: 14px !important;
    }

    div.guesser {
        border-radius: 10px;
        padding: 20px;
        margin: 10px;
        width: 600px;
    }

    div.options {
        position: fixed;
        top: 10px;
        right: 10px;
        font-size: 100%;
        text-align: right;
    }

    div.finalscore {
        border-radius: 10px;
        padding: 20px;
        margin: 10px;
        width: 400px;
    }

    #player {
        transform: scale(1.1, 1.1);
    }
}
/* Copied from chatgpt */
.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 2px 2px;
    text-align: center;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

/* Alternating row colors */
.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* Highlight on hover */
.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Active row highlight */
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}


.corner-image {
    position: fixed;
    bottom: 0 !important;
    right: 0 !important;
    line-height:0;
}

.corner-image img {
    width: 150px;
    opacity: 0.6;
    pointer-events: none;
}
