@import url('https://fonts.googleapis.com/css2?family=Anek+Telugu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');

.theHead{
    display: grid;
    grid-template-columns: 1fr;
    background-color: rgb(2, 106, 167);
    align-items: center;
}

header div div:first-of-type{
    grid-column: 1;
    margin-left: 10px;
}

header div div:first-of-type h1{
    color: white;
}

header nav{
    display: grid;
    grid-template-columns: repeat(2, 100px);
    align-items: center;
    grid-column: 2 / span 3;
}

header nav a{
    color: white;
    text-decoration: none;
}

header nav a:hover{
    text-decoration: underline;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    /* padding: 0; */
}

main {
    word-wrap: break-word;
}

.side-menu{
    display: grid;
    grid-template-rows: 1fr;
    border-bottom: 1px solid black;
}

.side-menu-dark{
    border-bottom: 1px solid white;
}

.workspaces p:hover{
    text-decoration: underline;
    cursor: pointer;
}

h1[onclick = 'returnOG();']:hover{
    cursor:pointer;
}

header a{
    text-decoration: none;
    color: white;
}

/* .selections{
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.workspaces{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
} */

iframe {
    width: 100%;
    height: 450px;
    border: 0;
    /* overflow-y: auto; */
    overflow: hidden;
    margin-bottom: -4px;
}

.table{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: auto;
    column-gap: 10px;
    row-gap: 10px;
    /* overflow-x: auto; */
    padding-top: 20px;
    margin-left: 55px;
    margin-right: 55px;
}

.tabby{
    background-color: rgba(248, 248, 248, 0.6); 
    text-align: center;
    border-radius: 20px;
}

.tabby div{
    background-color: white;
    width: 90%;
    margin: auto;
    padding: 15px 0 15px 0;
    margin-bottom: 20px;
    font-family: 'Prompt';
}

.tabby div:first-of-type{
    background-color: transparent;
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Anek Telugu';
}

p, h1 {
    font-family: 'Comfortaa';
    margin-left: 10px;
}

.workspaces{
    text-align: center;
}

footer {
    word-wrap: break-word;
}

.tabby div p{
    font-size: 12px;
    border-radius: 200px;
    padding: 5px;
    margin: auto;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 8px;
    text-align: center;
    font-weight: bold;
}

/* .tabby div:first-of-type:hover{
    background-color: rgba(248, 248, 248, 0.6);
    cursor: default;
} */

.tabby div:not(.tabby div:first-of-type):hover{
    background-color: rgb(226, 226, 226);
    cursor: pointer;
}

.tabby div .started{
    background-color: turquoise;
}

.tabby div .incomplete{
    background-color: rgb(255, 38, 0);
}

.tabby div .completed{
    background-color: rgb(0, 255, 174);
}

.theme{
    position: fixed;
    top: 83%;
    right: 2%;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    background-color: black;
    color: white;

    /* TRANSITION ANIMATION */
    transition-property: all;
    transition-duration: .3s;
}

.theme:hover{
    transform: scale(1.2, 1.2);
}

.theme-darkened{
    background-color: rgb(240, 240, 240);
    color: black;
}

.trigger-dark{
    background-color: black;
    color: white;
}

.tabby div[class = "halp"]{
    background-color: rgb(240, 156, 0);
    border-radius: 15px;
}

.tabby div[class = "halp"]:hover{
    background-color:rgb(212, 138, 0) !important;
}

.tabby div[class = "qeez"]{
    background-color: rgb(228, 224, 0);
    border-radius: 15px;
}

.tabby div[class = "qeez"]:hover{
    background-color: rgb(195, 192, 1) !important;
}

.tabby div[class = "emtee"]{
    background-color: rgb(255, 72, 0);
    border-radius: 15px;
}

.tabby div[class = "emtee"]:hover{
    background-color: rgb(212, 60, 0) !important;
}

.sticky2190{
    background-color: rgb(38, 0, 255);
    border-radius: 15px;
    text-align: left;
    color: white;
    font-size: 11px;
    width: 60px;
    padding: 3px;
    display: flex;
    margin-left: 10px;
    justify-content: space-between;
}

.sticky2600{
    background-color: rgb(21, 255, 0);
    border-radius: 15px;
    text-align: left;
    font-size: 11px;
    width: 60px;
    padding: 3px;
    display: flex;
    margin-left: 10px;
    justify-content: space-between;
}

img {
    width: 150px;
    height: 100px;
}

img:hover{
    transform: scale(3, 2) translate(30%, -50%);
}

@media (min-width: 768px){
    main{
        display: grid;
        grid-template-columns: 1fr 6fr;
    }

    .display-onsite{
        border-left: 1px solid black;
        border-bottom: 1px solid black;
    }

    .display-onsite-dark{
        border-left: 1px solid white;
        border-bottom: 1px solid white;
    }

    main h1{
        grid-row: 1;
        grid-column: 1;
    }

    .workspaces{
        margin-top: 80px;
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    iframe{
        height: 630px;
    }
}