<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.scheduleContainer {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 5px;
}

.cardss {
    border-radius: 15px;
    width: 100%;
    border: 1px solid #ddd;
}

.cardss div {
    font-size: .8rem;
}

.scheduleContainer2 h4 {
    font-weight: 600;
    font-size: 1rem;
}

/*.cardss:hover {
    -webkit-box-shadow: -4px 5px 18px 0px rgba(171,171,171,1);
    -moz-box-shadow: -4px 5px 18px 0px rgba(171,171,171,1);
    box-shadow: -4px 5px 18px 0px rgba(171,171,171,1);
}*/

.cardDetail {
    display: flex;
    padding: 6px;
    justify-content: space-between;
}


.btnGroup button, .btnGroup a {
    font-size: 12px;
    margin: 0 10px;
}

.scheduleContainer2 {
    display: grid;
    grid-template-columns: min-content auto;
    padding: 5px 0;
}

.goRoundText {
    font-weight: 600;
    font-size: 16px;
}


.locationText {
    font-size: 14px;
    color: #5D5D5D;
}

@media only screen and (min-width: 500px) {
    .btnGroup {
        display: flex;
    }

}

/*For tablet screen and desktop*/
@media (min-width: 768px) {
    .forSmallerScreen {
        display: none;
    }

    .basic-page .btn {
        margin: 0 10px;
    }
}

@media (min-width: 320px) and (max-width: 767px) {

    .forDesktop {
        display: none;
    }

    .workingOrderGridContainer {
        display: grid;
        font-size: 1rem;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

}

.modal-header {
    display: flex;
    justify-content:space-between;
   
}

.modal .modal-dialog {
    width: 100%;
    max-width: 900px;
}

/*.table.table-hover {
    width: fit-content;
}*/</pre></body></html>