﻿



    
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/** Simple drag and drop with Blazor CSS **/

.jobs-container {
    display: flex;
    justify-content: space-around;
}

.job-status {
    display: flex;
    flex-direction: column;
    width: 20%;
    padding-left: 5px;
    padding-right: 5px;
}

    .job-status ul {
        flex: 1;
    }

.dropzone {
    /*border: 2px dashed #75868a;*/
    border: 2px dashed #e5e5e5;
    list-style: none;
    min-height: 700px;
    padding-left: 5px;
    padding-right: 5px;
}

.no-drop {
    border: 2px dashed red;
}

.can-drop {
    border: 2px dashed green;
}

.draggable {
   /* margin-bottom: 10px;
    padding: 10px 25px;
    border: 1px solid #424d5c;
    cursor: grab;
    background: #5c6b7f;
    color: #ffffff;
    border-radius: 5px;
    width: 250px;*/
}

#taskboard .dragdrop-container {
    margin-top: 10px;
}

.draggable:active {
    cursor: grabbing;
}

.dragging {
    cursor: grabbing;
}

.description {
    font-size: 18px;
}

.last-updated {
    margin-bottom: 0;
    font-size: 11px;
    color: #e1e5ea;
    font-weight: bold;
}

    .last-updated small {
        text-transform: uppercase;
        color: #c4cbd4;
        font-size: 11px;
    }

@media (max-width: 767.98px) {
    .main .top-row {
        display: none;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}


.card {
    margin: 7px 0;
    box-shadow: -8px 8px 14px 0 rgba(25, 42, 70, 0.11);
}

    .card .card-body {
        /*padding: 10px;*/
    }

.footer-btns {
    text-align: right;
    border-top: 1px solid #3333;
    padding-top: 10px;
}

.add-task-form{
    padding:0 20px;
}

.card-tags{
    font-size:12px;
}

.mention-container {
    position: relative;
    width: 300px;
}

.suggestions {
    position: absolute;
    width: 100%;
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
}

    .suggestions div {
        padding: 5px;
        cursor: pointer;
    }

        .suggestions div:hover {
            background-color: #eee;
        }

.editor-parent-container .ql-editor {
    padding-right: 70px;
}

.editor-parent-container {
    position: relative;
    height: 80px;
    max-height: 80px;
}

.editor-container-comment {
    height: 100%;
}

.save-button {
    position: absolute;
    top: 25px; /* Adjust this value to position the button from the top */
    right: 20px; /* Right aligned and inside the editor */
    z-index: 1000; /* Ensure the button is above the editor content */
}

.comment-body {
    margin-top: 5px;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 4px;
    background-color: #eeefef;
    position:relative;
}

.comment-buttons {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 14px;
}

    .comment-buttons > .delete:hover {
        cursor: pointer;
        color: #975AFF;
    }

    .comment-buttons > .edit:hover {
        cursor: pointer;
        color: #975AFF;
    }

.users-list{
    margin-left :5px !important;
}

.users-list .mention-li-item + .mention-li-item {
    margin-left: 0;
}

.mention-item {
    color: white;
    font-size: 9px;
    line-height: 20px;
    font-weight: 500;
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
}

.card.filtercard {
    border-radius: 4px;
    border: 1px solid rgba(34, 34, 34, 0.125);
}