﻿.bui-list-container {
    display: flex;
    flex-direction: column;
}
.bui-list-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    cursor: pointer;
    margin-top: 3px;
    margin-bottom: 3px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 8px;
    align-content: center;
    align-items: center;
    background-color: #FFEBE4;
}
    .bui-list-row.dark {
        background-color: var(--BEC-color-darkorange);
        width: 50px;
        justify-content: center;
    }
    .bui-list-row:hover {
        background-color: #FFB598;
        border: 2px solid black;
    }
.bui-list-row-text {
    display: flex;
    font-weight: 600;
    width: 50%;
}
/*Scheduling*/
/*.sched-rows-container {
    display: flex;
    flex-direction: column;
}

.sched-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    cursor: pointer;
    margin-top: 3px;
    margin-bottom: 3px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 8px;
    align-content: center;
    align-items: center;
    background-color: #FFEBE4;
}


    .sched-row.dark {
        background-color: var(--BEC-color-darkorange);
        width: 50px;
        justify-content: center;
    }

        .sched-row.dark.sched-isLocked {
            background-color: lightgray;
        }

    .sched-row:hover {
        background-color: #FFB598;
        border: 2px solid black;
    }

.sched-row-name {
    display: flex;
    font-weight: 600;
    width: 50%;
}

.sched-row-updated {
    display: flex;
    font-style: italic;
    margin-left: auto;
}

.sched-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.sched-body {
    width: 100%;
    max-width: 800px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.sched-title {
    display: flex;
    width: 100%;
    font-weight: 600;
    font-size: 3em;
    justify-content: center;
    text-align: center;
}

.sched-info {
    display: flex;
    flex-wrap: wrap;
}

.sched-info-time {
    display: flex;
    flex-grow: 1;
    padding-left: 8px;
}

.sched-info-days {
    display: flex;
    padding-right: 8px;
}*/