body {
    background-color: #ccdbdc;
    width: 98%;
    margin: 0 auto;
    font-family: 'Noto Sans', sans-serif;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: blue;
}

#banner {
    height: 40px;
    width: 100%;
    line-height: 40px;
    display: table;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 2px;
}

#banner-text {
    background-color: #fff;
    display: table-cell;
    border-bottom-right-radius: 10px;
    font-size: 2em
}

#banner-button {
    background-color: #fff;
    color: #263d42;
    height: 100%;
    width: 50px;
    display: table-cell;
    line-height: inherit;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid black;
    border-bottom-left-radius: 10px;
}

#banner-button:hover {
    background-color: #f9f9f9;
}

.new-form { 
    width: 100%;
    display: table;
    margin: 0 0 2px 0;
}

.new-form input {
    display: table-cell;
}

.new-form .text-input {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    height: 34px;
    width: 90%;
    padding: 10px;
}

.new-form .button {
    background-color: #75fb5b;
    color: #fff;
    width: 10%;
    height: 34px;
    border: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
}

.new-form .button:hover {
    background-color: #6bed51;
}

#list-container {
    list-style-type: none;
    margin: 0 0 2px 0;
    padding: 0;
}

#list-container .list-entry:first-child .list-entry-text { border-top-left-radius: 10px; }
#list-container .list-entry:first-child .list-entry-button { border-top-right-radius: 10px; }
#list-container .list-entry:last-child .list-entry-text { border-bottom-left-radius: 10px; }
#list-container .list-entry:last-child .list-entry-button { border-bottom-right-radius: 10px; }

.list-entry {
    padding: 0;
    width: 100%;
    height: 40px;
    display: table;
    table-layout: fixed;
    border-bottom: 1px solid #e7e7e7;
}

.list-entry:last-child {
    border-bottom: none;
}

.list-entry-text {
    background-color: #fff;
    color: #263d42;
    font-size: 1em;
    vertical-align: middle;
    line-height: 40px;
    text-align: center;
    width: 90%;
    display: table-cell;
    cursor: pointer;
    word-wrap: break-word;
}

.list-entry-button {
    background-color: #fb5b77;
    color: #fff;
    font-size: 1.2em;
    border: none;
    display: table-cell;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.list-entry-button:hover {
    background-color: #f25570;;
}

.completed-item .list-entry-text {
    text-decoration: line-through;
}

.list-block {
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
}

.clear-completed {
    cursor: pointer;
}

.clear-completed:hover { background-color: #f9f9f9 }

#verifyModalBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5)
}

#verifyModal {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    background-color: white;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
}

.verifyModalMessage {
    padding: 1em 0.5em;
}

.verifyModalConfirm, .verifyModalCancel {
    margin: 0;
    bottom: 0;
    width: 50%;
    border: none;
    font-size: 1em;
    cursor: pointer;
    padding: 0.5em;
} 

.verifyModalConfirm {
    background-color: #75fb5b;
    border-bottom-right-radius: 10px;
} 

.verifyModalCancel {
    background-color: #fb5b77;
    border-bottom-left-radius: 10px;
}

/* Font Sizes */
@media only screen and (max-width: 768px) {
    html {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) {
    html {
        font-size: 14px;
    }
    body {
        width: 400px;
    }
    #verifyModal {
        width: 50%;
        left: 25%;
        font-size: 1em;
    }
}

@media only screen and (min-width: 992px) {
    html {
        font-size: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 16px;
    }
}

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');