.sidebar-icon {
    font-size: 3rem;
    color: #6c757d;
}

.save-icon {
    cursor: pointer;
    font-size: 2rem;
}

.save-icon-green {
    color: green;
}

.save-icon-dark-blue {
    color: darkblue;
}

.parent-task-icon {
    cursor: pointer;
    font-size: 2rem
}

.table-filter {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.date {
    width: 135px;
}

.filter {
    display: block;
}

.login_view {
    width: 600px;
    margin: 0 auto;
    margin-top: 100px;
}

@media screen and (max-width: 1000px) {
    .filter {
        display: none;
    }
    
    .login_view {
        width: 350px;
        margin: 0 auto;
        margin-top: 100px;
    }
}

.content-div {
    /* border: solid 1px darkblue; */
    overflow-y: auto;
    padding: 10px;
    width: 100%;
}

.header {
    font-size: 30px;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    height: 6vh;
}

.sub-header {
    font-weight: bold;
    font-size: 20px;
}

.listheaderrow {
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: solid 2px gray;
}

.listrow {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px silver;
}

.parentlistrow {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px silver;
    background-color: #E6F2FF;
}

.fixed50 {
    flex: 0 0 50px;
}

.fixed75 {
    flex: 0 0 75px;
}

.fixed100 {
    flex: 0 0 100px;
}

.fixed125 {
    flex: 0 0 125px;
}

.fixed150 {
    flex: 0 0 150px;
}

.fixed200 {
    flex: 0 0 200px;
}

.fixed300 {
    flex: 0 0 300px;
}

.fixed400 {
    flex: 0 0 400px;
}

.fixed500 {
    flex: 0 0 500px;
}

.fixed600 {
    flex: 0 0 600px;
}

.quietlink {
    text-decoration: none;
    color: black;
}

.quietCursorLink {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

#taskCommentsContainer {
    padding: 5px;
    width: 100%;
}

.task-comment {
    margin-bottom: 20px;
}

.textarea-comment {
    width: 100%;
}

.tm-button {
    width: 120px;
}

.tm-inline-select {
    width: 200px;
}

.save {
    border: solid 1px silver;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin-bottom: 20px;
    align-items: center;
}

.save div:last-child {
    margin-left: auto;
}

.savetext {
    font-size: 20px;
    font-weight: bold;
}

.comment-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.comment-col {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

#divTaskFileUpload {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid silver;
    width: 100%;
    height: 60px;
    padding-left: 10px;
    padding-right: 5px;
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    /* background-color: rgb(0,0,0); */
    /* Fallback color */
    /* background-color: rgba(0,0,0,0.4); */
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 2px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    box-shadow: 2px 2px 10px 10px lightgray;
}

.file-name {
    font-size: 28px;
    font-weight: bold;
}

.close {
    color: #aaa;
    margin-left: auto;
    margin-right: 20px;
    margin-top: -20px;
    font-size: 40px;
    font-weight: bold;
    max-width: 15px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

* {
    box-sizing: border-box;
}

.categoryColourPicker {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    vertical-align: middle;
    width: 250px;
    height: 40px;
    justify-content: space-around;
    align-items: center;
}

.color {
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid lightslategrey;
    /* border-radius: 50%; */
    cursor: pointer;
}

.color:hover {
    border-color: black;
}

.filledCircle {
    border: none; /*2px solid #a1a1a1;*/
    padding-left: 10px;
    padding-right: 11px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.filledCircleContainer {
    width: 50px;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}

.settingsContainer {
    width: 100%;
    max-height: 600px !important;
    overflow-y: auto;
}

.notificationsContainer {
    width: 100%;
    max-height: 600px;
    overflow-y: auto;
}
