.container {
    position: relative;
    width: 1200px;
    min-height: 850px;
    margin: 0 auto;
    padding: 5px;
    /* display: flex; */
    border-radius: 10px;
    background-color: rgba(250, 54, 97, 0.766);
    background-image: url("https://images.unsplash.com/photo-1573865526739-10659fec78a5?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fGNhdHxlbnwwfHwwfHx8MA%3D%3D");
    background-size: 475px 900px;
}


.body {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    background-color: #e2e1dc;
}

#calendar-prev {
    background-color: rgba(250, 54, 97, 0.766);
    border-color: rgba(250, 54, 97, 0.766);
}

#calendar-next {
    background-color: rgba(250, 54, 97, 0.766);
    border-color: rgba(250, 54, 97, 0.766);
}

#calendar {
    position: relative;
    width: 100%;
    height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-wrap: wrap; */
    justify-content: space-between;
    color: #373c4f;
    border-radius: 5px;
    background-color: #fff;
}

#current-month {
    /* width: 100%; */
    height: 150px;
    /* display: flex; */
    text-align: center;
    /* justify-content: space-between; */
    padding: 0 50px;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
}

#calendar-days {
    width: 100%;
    height: 100px;
    /* display: flex; */
    text-align: center;
    /* justify-content: space-between; */
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.calendar-row td {
    border: 2px solid #000;
}

#calendar-header,
#calendar-days {
    color: black;
    text-transform: bold;
}

.calendar-row td {
    width: 100px;
    height: 100px;
    font-weight: bolder;
    background-color: #fff;
    position: relative;
}

.calendar-row td:hover {
    background-color: #00f;
}

.calendar-row td.has-event {
    background-color: #00f;
}

.calendar-row td.current-day {
    background-color: rgba(250, 54, 97, 0.766);
}

.inactive-month {
    color: #aaa;
}

.active-month {
    color: black;
}

.calendar-date {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    border-bottom: 4px solid #000;
    border-right: 4px solid #000;
}

#todays-events {
    color: white;
    border-radius: 5px;
    border-color: #000;
}

#no-events {
    background-color: #fff;
    color: white;
    width: 100%;
    
}

.list-group-item {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;

}

#no-events-row {
    height: 650px;
    text-align: center;
}

#eventModal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.event-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#eventModal h3 {
    text-align: left;
}

#modal-close-btn {
    float: right;
    margin-left: 380px;
}

.event {
    position: relative;
    top: 75%;
    left: 35%;
}