.alatsi-regular {
    font-family: "Alatsi", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: rgb(255, 255, 255);

    font-family: "Alatsi";
}

button {
    font-family: "Alatsi";
}

/* For information related to the page */
.tooltip { /* The icon itself */
    position: relative;
    display: inline-block;
    top: .3rem;
}

.tooltip img {
    width: 3rem;
}

.tooltip .tooltip-text { /* The text that appears when hovering over the icon */
    visibility: hidden;
    position: absolute;
    z-index: 1;
    padding: 0px 15px;

    background-color: #ff0000;
    border: 3px solid black; 
    border-radius: 6px;
    width: 300px;
    
    color: #fff;
    font-size: 20px;  
    text-align: left;
}

.tooltip:hover .tooltip-text { /* Make the tooltip visible on hover */
    visibility: visible;
}

/* Button in the corner that links the two pages */
#page-link-button-wrapper {
    position: absolute;    
}

#page-link-button {
    border: 2px solid;
    border-radius: 15px;
    background-color: red;

    padding: 10px;
    margin: 12px 0px 0px 30px;

    font-size: 2vw;
}

#page-link-button:hover {
    background-color: rgb(181, 0, 0);
    font-weight: bold;
}

#page-link-button:active {
    background-color: rgb(102, 0, 0);
}

#page-name {
    color: black;
    font-style: italic;
    font-weight: bold;
    text-align: center;
}

.plate-1 {
    margin: 5px 0px;
    background-color: #6176ff;
    border: 5px solid black;
}

.plate-2 {
    background-color: #ffffff;
    border: 5px solid #000000;

    text-align: center;
}

h1 {
    margin: 10px auto;

    color: black;
    
    text-align: center;
}

table { 
    border-collapse: collapse;
}

.list, tr, td {
    margin: 0px;
    padding: 0.2vw;

    border: 2px solid black;
    background: rgb(189, 189, 189);

    font-size: 1.5vw;
}

/* All major tables */
.list {
    margin: auto;
    border: 4px solid;
}

th {
    background-color: #0015ff;
    font-weight: bold;
}

.owner-list, tr, td {
    font-size: 2vw;
    width: fit-content;
    margin: auto;
}

.game-data-cell-0, .game-data-cell-1 {
    border: none;
}

.games-cell {
    border: 2px solid;
}

.standings-cell-1, .drafts-cell-1, .game-data-cell-1 {
    background-color: #bdbdbd;
}

.standings-cell-0, .drafts-cell-0, .game-data-cell-0 {
    background-color: #808080;
}

.logo-drafts {
    border: 5px solid black;
    border-style: double;
    border-radius: 15%;
    margin: 0px 15px 0px 0px;
    width: 6vw;

}

.logo-games {
    border: 0.5vw solid black;
    border-style: double;
    border-radius: 15%;
}

/* For phone resolution */
@media (max-width: 1429.99px) {
    /* Logo and/or title in the corner */
    #page-name {
        padding: 10px;
        width: 950px;

        font-size: 100px;
    }

    h1 {
        font-size: 70px;
    }

    .plate-1 {
        margin: 10px 0px;
        width: 950px;
    }

    #page-link-button {
        font-size: 4vw;
    }

    .logo-drafts {
        width: 150px;
    }

    button {
        color: black;
    }
}

/* For desktop resolution */
@media (min-width: 1430px) {
    /* Logo and/or title in the corner */
    #page-name {
        margin: 20px auto;

        font-size: 5vw;
    }

    h1 {
        font-size: 4vw;
    }
}