﻿
/** Simple drag and drop with Blazor CSS **/

/*.jobs-container {
    display: flex;*/
    /* justify-content:space-between;*/
/*}

.jobs-list-header {
    position: sticky;
    top: 0px;
    backdrop-filter: blur(5px);
    background-color: transparent;
    z-index: 5;
    border-radius:10px;
}

    .jobs-list-header h3 {
        margin:5px 10px;
        color:#000;
    }

    .jobs-list-header .form-control {
        border-radius: 0 0 5px 5px !important;
    }

.job-status {
    display: flex;
    flex-direction: column;
    max-height: 78vh;
    overflow-y: auto;
    min-width: 250px;
    overflow-x: hidden;
   padding-right:17px;
    
}

    .job-status ul {
        flex: 1;
    }

.dropzone {
    padding: 0 10px 10px 0;
    list-style: none;
    margin-top:10px;
}

.no-drop {
    border: 2px red;
}

.can-drop {
    border: 2px green;
}

.draggable {
    margin-bottom: 10px;
    padding: 10px 5px;
    border: 1px none #424d5c;
    cursor: grab;
    color: #231f7d;
    border-radius: 5px;
    background-color: whitesmoke;
    box-shadow: 1.5px 1.5px 7px rgba(74, 84, 108, 0.84);
    width: 200px;
}

    .draggable:hover {
        background-color: lightgray;
    }

    .draggable:active {
        cursor: grabbing;
    }

.dragging {
    cursor: grabbing;
}

.description {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 15px;
    word-wrap: break-word;
    word-break: break-all;
}

.complete-mask {
    background-color: #6b696920;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    pointer-events:none;
}

.last-updated_wrap {
    margin: 12px 0 0 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    justify-self: end;
}

.last-updated {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 11px;
    color: #8eacff;
    font-weight: bold;
}

    .last-updated small {
        text-transform: uppercase;
        color: #c4cbd4;
        font-size: 11px;
    }

.last-updatedtime {
    margin: 0;
    font-size: 11px;
    color: #8eacff;
    font-weight: bold;
}*/
/* misc */
/*.contrib-card {
    padding: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .contrib-card img {
        height: 50px;
        width: 50px;
    }

.screenshot {
    text-align: center;
    display: block;
}

    .screenshot img {
        max-width: 100%;
    }

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


#checklist {
    --background: #ffffff;
    --text: #414856;
    --check: #4F29F0;
    --disabled: #C3C8DE;
    --width: 100%;
    --height: fit-content;
    --border-radius: 10px;
    background: var(--background);
    width: 250px;
    height: var(--height);
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 3px 3px 5px darkgray;
    margin-bottom: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: 35px auto;
    align-items: center;
}

    #checklist .clc-chkbox {
        align-self: start;
        margin-top: 3px;
    }
    #checklist label {
        color: #5f5f5f;
        word-break:break-all;
        word-wrap:break-word;
    }
    #checklist .clc-button {
        height:fit-content;
        padding:3px 5px;
        width:45px;
        align-self:end;
    }

.Schedule_Date_num{
    margin-bottom:3px;
}*/