.tc-selector { /* = "textclip"*/
}

.tc-row {
    padding-left: 20px;
}

.tc-zoombutton {
    padding-left: 7px;
}

.tc-title {
    border-bottom: 1px solid black;
    /*border-radius:3px;*/
}

.drag-container {
    min-height: 600px;
    border: 2px dashed darkgreen;
    padding: 3px;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
}

.drag-source {
    min-height: 600px;
    border: 1px dotted black;
    padding: 3px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.drag-item-container {
    position: relative;
}

.drag-item {
    border: 1px solid black;
    border-radius: 5px;
    background-color: aliceblue;
    margin: 4px;
    height: 50px;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.drag-period {
}

.drag-flex {
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
}

.drag-trash {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    font-size: 20px;
    color: white;
    background-color: red;
    height: 32px;
    width: 32px;
    line-height: 32px;
}

.drag-template {
    min-height: 60px;
    margin-bottom: 15px;
    padding: 5px;
    border: 2px solid black;
    background-color: #ffe7e3;
}

.drag-divider {
    height: 15px;
}

.drag-nameonly {
    cursor: pointer;
    background-color: #f3f3f3;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drag-composite {
    margin: -3px 0;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 3.5px solid darkgray;
    height: auto;
    overflow: hidden;
}

.drag-save {
    font-size: larger
}

.sched-template-container {
    display: flex;
}

.sched-template-body {
    flex-direction: row;
    text-align: left;
    padding-right: 5px;
    display: flex;
}

.sched-template-block {
    border: 1px solid black;
    background-color: pink;
    margin-bottom: 5px;
    flex-direction: column;
    display: flex;
}

.sched-template-period {
    border-bottom: 1px solid black;
    padding: 0 5px 0 5px;
    flex-direction: row;
    display: flex;
}

.sched-template-time {
    padding-right: 5px;
    min-width: 80px;
}

.sched-template-cell {
    min-width: 100px;
    height: 100%;
    flex-basis: 1;
    border-left: 1px solid black;
}

.sched-template-end {
    color: red;
}

.sched-template-list-item {
    display: inline-block;
    width: 100%;
    padding: 3px;
    border: 1px solid black;
    border-radius: 4px;
    text-align: center;
    background-color: #f6f6f6;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
}

.sched-title-drop {
    min-height: 60px;
    border: 2px dashed darkgreen;
    padding: 3px;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
    width: 100%;
}

.sched-title-noname {
    font-weight: bold;
}

.class-title {
    text-align: center;
    font-weight: bold;
}

.class-students-drop {
    min-height: 100px;
    border: 1px dotted darkgreen;
    padding: 2px;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.class-periods-container {
}

.class-period-display {
    min-height: 50px;
}



.image-util-container {
    margin-top: 10px;
    height: 65%;
    width: 100%;
    position: relative;
    display: flex;
}

.image-util-bg {
    height: 100%;
    top: 0;
    border: 1px solid black;
    z-index: 1;
    display: inline-block;
    user-select: none;
}



/* Define the styles for the card container */
.user-card-container {
    display: flex; /* display the cards in a row */
    flex-wrap: wrap; /* wrap the cards to the next row when they run out of space */
}
.user-card {
    width: 100px;
    margin: 5px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px #ccc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: red; /* orange base */
}

    .user-card .user-card-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative; /* NOT absolute */
        background: green; /* orange behind contain gaps */
    }

    .user-card .user-card-name {
        font-size: 18px;
        padding: 10px;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        overflow: clip;
    }


.custom-checkbox {
    display: flex;
    height: 30px;
    width: 30px;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
}

.carousel-body {
    align-items: center;
    /*    margin-left:-80px;
    margin-top:-7px;*/
    flex-grow: 1;
    height: 46px;
    display: flex;
    flex-direction: row;
}

.carousel-card {
    aspect-ratio: 1;
    margin-top: -6.5px;
    height: 100%;
    width: 40px;
    flex-shrink: 0;
    flex-grow: 1;
    background-color: red;
}

.carousel-card-nav {
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 7px;
    flex-shrink: 0;
    flex-grow: 0;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: medium;
}

    .carousel-card-nav:hover {
        background-color: #ffbf97;
    }

.carousel-card-image-box {
    height: 46px;
    width: 46px
}

.carousel-card-image {
    height: 100%;
}

/* Chunk Progress Bar */

.tp-bar {
    display: flex;
    gap: 4px;
    width: 100%;
}

.tp-chunk {
    flex: 1 1 0;
    height: 8px;
    background: #e5e7eb;
    border-radius: 2px;
}

    .tp-chunk.active {
        background: #93c5fd;
    }

    .tp-chunk.done {
        background: #3b82f6;
    }

.BEC-dropbox-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
}

.BEC-dropbox-tile {
    width: 20vh;
    height: 20vh;
    max-height: 100px;
    max-width: 150px;
    position: relative;
    display: inline-block;
    border: 1.5px solid black;
    border-radius: 5px;
}

.BEC-removable-item-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.BEC-removable-item-close {
    cursor:pointer;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    height: 18px;
    width: 18px;
    font-size: 90%;
    padding-left: 1px;
    color: white;
    align-content: center;
    justify-content: center;
    border-radius: 3px;
    background-color: red;
    color: white;
}
