#schedMessagesApp {
    position: fixed;
    width: 309px;
    height: 550px;
    left: 932px;
    top: 656px;

    /* background-color: #030303; */
    border: 3px solid #555;
    border-radius: 5px;
    /* padding: 10px; */
    font-family: Consolas, monospace;
    z-index: 2000;

    /* overslow should scroll */
    overflow-y: auto;
}

.sched-messages-app-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding:10px; */
    border-bottom: 3px solid #555;
    background-color: #030303;
    cursor: pointer;
}

.sched-messages-app-header:hover {
    background-color: #030303AA;

    h3 {
        color: #555;
    }
}

.sched-messages-app-header-title {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.sched-messages-app-mobile-header-search-input {
    margin: 10px;
    padding: 5px;
    background: #222;
    border: 1px solid #555;
    color: #e0e0e0;
    border-radius: 3px;
    width: 100px;
}

.sched-messages-app-name-search-results {
    overflow-y: auto;
    width: 100%;
    background-color: #030303;
    border: 1px solid #555;
    z-index: 1000;
    margin-bottom: 10px;
}

.sched-messages-app-name-search-result {
    height: 20px;
    margin-top: 5px;
    padding-left: 5px;
}


.sched-messages-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #030303;
    /* background-color: #030303DD; */
    border-bottom: 3px solid #555;
    /* border-radius: 5px; */
    /* margin: 10px;
    padding: 10px; */
    font-family: Consolas, monospace;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

.sched-messages-card-upper {
    padding-top: 5px;
    padding-bottom: 5px;
}

.sched-messages-card-lower {
    padding-bottom: 8px;
}

.sched-messages-card-upper,
.sched-messages-card-lower {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.sched-messages-card-name,
.sched-messages-card-unread {
    font-size: 20px;
}


.sched-messages-card-unread {
    margin-left: 10px;
    margin-right: 15px;
    padding-left: 10px;
    padding-right: 10px;
    color: #DDD;
    /* background-color: red; */
}

.sched-messages-card-preview {
    font-family: Consolas, monospace;
    font-style: normal;
}

.sched-messages-card-preview-time {
    background-color: #030303;
    color: #DDD;
    border-right: 1px solid #555;
    border-left: 1px solid #555;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    /* opacity: 0.7; */
}

.sched-messages-preview-name-inbound {}

.sched-messages-preview-name-outbound-api {
    color: #25609c;
    font-style: bold;
    ;
}

.sched-messages-preview-name-outbound-response {
    color: #08f000;
    font-style: bold;
    ;
}

.sched-messages-preview-message {}
