* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    height: auto;
    margin: 0px;
    padding: 0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    text-transform: uppercase;
    width: auto;
    text-align: center;
    background-image: url("../img/chalkboard_bkg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
label, li{
    font-size: 20px;
}
input{
    margin-top: 5px;
    margin-bottom: 5px;
}
ul{
    list-style-type: none;
    margin-left: 0px; 
}
ul li{
    margin-bottom: 5px;
    padding: 5px;
}
span{
    margin: 5px;
}
.delete, .edit{
    cursor: pointer;
    top: 50%;
    right: 0;
    margin: 5px;
    padding: 1px
}
.delete:hover{ background: red; }
.edit:hover{ background: yellow; }
#task_container{
    height: 200px;
    overflow-y: auto;
    margin: 5px;
}

#load_btn, #load_div, #refresh{
    visibility: hidden;
}
#load_div{
    display: flex;
    justify-content: center;
}
table{
    width: 75%;
    height: 75%;
}
caption, table{
    background-color: #cecbc5;
}
table, th, td{
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}
.eisenhower_matrix{
    text-align: left;
}
#refresh{
    margin: 5px;
}
@media only screen and (max-width:425px) {
    body {
        font-family: Arial, Helvetica, sans-serif;
    }
    label, li{
        font-size: 15px;
    }
}
