﻿.scheduleContainer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: max-content;
    /*height: calc(100vh - 160px);*/
    gap: 2px;
    box-sizing: border-box;
}

.scheduleCellHeader {
    height: 30px;
    text-align: left;
}

.scheduleCellEmpty {
    background-color: #F5F5F5;
    border-radius: 5px;
}

.scheduleCell {
    text-align: left;
    border: 1px solid gray;
    padding: 1px;
    border-radius: 5px;
    background-color: ghostwhite;
    min-height: 120px;
    height: fit-content;
    box-sizing: border-box;
}
.scheduleCell:hover {
    background-color: aliceblue;
    border: 1px solid blue;
}

.popupSelectAircraft {
    height: 350px;
    width: 400px;
}

.scheduleDate {
    font-size: 1rem;
}

.scheduleEntryClickable {
    padding: 2px;
    background-color: lightskyblue;
    border-radius: 4px;
    margin-top: 1px;
}

.scheduleEntryClickable:hover {
    border: 1px solid blue;
}


/* My Schedule  */
.myscheduleContainer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: max-content;
    /*height: calc(100vh - 160px);*/
    gap: 2px;
    box-sizing: border-box;
}

.myscheduleCellHeader {
    height: 30px;
    text-align: left;
}

.myscheduleCellEmpty {
    background-color: #F5F5F5;
    border-radius: 5px;
}

.myscheduleCell {
    text-align: left;
    border: 1px solid gray;
    padding: 1px;
    border-radius: 5px;
    background-color: ghostwhite;
    min-height: 120px;
    height: fit-content;
    box-sizing: border-box;
}

    .myscheduleCell:hover {
        background-color: aliceblue;
        border: 1px solid blue;
    }

.myscheduleDate {
    font-size: 1rem;
}

.myscheduleEntry {
    padding: 2px;
    background-color: lightskyblue;
    border-radius: 4px;
    margin-top: 1px;
}

.scheduleEntryClickable {
    padding: 2px;
    background-color: lightskyblue;
    border-radius: 4px;
    margin-top: 1px;
}

.scheduleEntryClickable:hover {
    border: 1px solid blue;
}
