#scheduler-events {
    flex: 1;
}


.add-pod-button,
.sched-event-edit-button {
    cursor: pointer;
    color: #808080;
}

.add-pod-button:hover,
.sched-event-edit-button:hover {
    color: blue;

}


.open-sticky-notes-button {
    cursor: pointer;
    color: #808080;
    margin-left: 10px !important;
}

.sticky-note-written-total {
    color: red;
    font-family: Consolas, monospace;
}

.sched-event-card-mass-text-button {
    cursor: pointer;
    color: #808080;
}

.sched-event-card-mass-text-button:hover {
    color: blue;
}

.event-info-header .open-sticky-notes-button:hover {
    color: blue !important;
}





#event-list {
    margin: 20px;
    margin-left: 303px;
}

.event-card {
    width: 586px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgb(37, 96, 156);
    color: #ffffff;
    /* Ensure text is visible on dark background */
    word-wrap: break-word;
    /* Ensure text wraps within the container */
}

.event-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;

}


.sched-event-card-date {

    color: #ccc;
    font-family: Consolas, monospace;
    margin-top: 0px;
    margin-bottom: 0px;


}

.sched-event-card-header-right {
    display: flex;
    align-items: center;
    padding-right: 3px;
}

.sched-event-card-id-number-h3 {
    color: #AAA;
    font-family: Consolas, monospace;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 10px;
}

/* event infor area is like console */
.event-info-area {
    background-color: #030303;
    border: 3px solid #555;
    padding: 10px;
    border-radius: 5px;
    font-family: Consolas, monospace;
    /* Set font to Consolas */
    margin-top: 3px;
}

.event-info-area p {
    color: #808080;
    margin: 5px 0;
    /* Add some spacing between paragraphs */
    font-family: Consolas, monospace;
    /* Set font to Consolas */

}

.event-info-area p strong {
    color: #0000ff;
    font-weight: bold;
    /* Ensure field descriptions are bold */
    font-family: Consolas, monospace;
    /* Set font to Consolas */
}

.event-info-header {
    display: flex;


}


.event-info-header-icon {
    margin-left: 7px;
    font-size: 18px;

}

.event-info-header-icon:first-of-type {
    margin-left: 0px;
}

.sticky-note-written-total {
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin-left: 6px;
}


.sched-info-pod-totals-container {
    display: flex;
    flex-direction: column;
    width: 94%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.sched-pod-totals-row {
    display: flex;
    flex-direction: row;
    border-left: 3px solid #555;
    width: 95%;
}

.sched-pod-total {
    width: 33%;
    font-family: Consolas, monospace;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-right: 3px solid #555;
}

.sched-event-card-header-left {
    display: flex;
    align-items: center;
}

.sticky-note-title-button {
    margin-left: 5px;
    /*padding: 2px;*/
    /*background-color: #030303;*/
    color: #555;
    /*border: 1px solid #555;*/
}


.sched-event-name {
    cursor: pointer;
    color: #CCC;
    font-weight: bold;
    font-family: Consolas, monospace;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 3px;
}

.sched-event-name:hover,
.sched-event-date:hover {
    color: #777;
}

.event-card p {
    margin: 5px 0;
    /* Add some spacing between paragraphs */
}

.event-card p strong {
    font-weight: bold;
    /* Ensure field descriptions are bold */
}

.event-card-lower {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
}

.open-all-pods-button,
.close-all-pods-button {
    cursor: pointer;
    color: #555;
    margin-left: 10px;
    margin-top: 10px;
}

.open-all-pods-button:hover,
.close-all-pods-button:hover {
    color: #999;
}

@media (max-width:600px) {
    .pod-container {
        display: initial;
    }

    .event-card {
        width: 300px;
    }

    .sched-pod-totals-row {
        flex-direction: column;
    }

    .event-card-header,
    .sched-event-card-header-left,
    .sched-event-card-header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sched-pod-total {
        width: 100%;
        padding-bottom: 5px;
    }
}
