﻿
.task-board {
    background: #627589;
    display: inline-block;
    padding: 15px;
    border-radius: 16px;
    width: 100%;
    /* overflow-x: scroll; */
    min-height: 300px;
}

.status-card {
    width: 49%;
    margin-right: 8px;
    background: #ffffff61;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    font-size: 0.9em;
}

    .status-card:last-child {
        margin-right: 0px;
    }

.card-header {
    width: 100%;
    padding: 5px 10px 5px 10px;
    box-sizing: border-box;
    border-radius: 3px;
    display: block;
    font-weight: bold;
}

.card-header-text {
    display: block;
}

ul.sortable {
    padding-bottom: 10px;
}

    ul.sortable li:last-child {
        margin-bottom: 0px;
    }

ul {
    list-style: none;
    margin: 0;
    padding: 0px;
}

.text-row {
    padding: 15px 10px;
    margin: 10px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 3px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    font-size: 0.8em;
    white-space: normal;
    line-height: 20px;
}

.ui-sortable-placeholder {
    visibility: inherit !important;
    background: transparent;
    border: #666 2px dashed;
}

.bottom-arrow {
    border-bottom: 5px solid #6A0136;
}

    .bottom-arrow:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 25px solid #6A0136;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }


.entry-title:after {
    content: "";
    display: block;
    height: 70px;
    background-image: url('Images/down_arrow.png');
    background-repeat: no-repeat;
    background-position: center bottom;
}