/* 
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto Slab', serif; 

really!
*/


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}


.wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgb(64, 27, 133);
    font-family: 'Roboto Slab', serif;
}

.title {
    /* font-size: 20px; */
    font-weight: 800;
    text-align: center;
    color: white;
    padding: 16px;
}

.wrapper .eventwrapper {
    margin: auto;
    width: 300px;
    height: calc( 100vh - 30vh);
    background-color: white;
    display: flex;
    flex-direction: column;
    
    overflow-y: scroll;

}

.eventwrapper .event {
    outline: 2px solid black;
    background-color: aqua;
    margin: 8px 4px 4px 8px;
    padding: 4px;
}

.event:hover {
    background-color: aquamarine;
}

.event .datetime {
    display: flex;
    justify-content: space-around;
    /* position: relative; */
    /* width: 80%; */
    align-items: center;
}
.datetime .date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.datetime .time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.datetime .menu {
    /* background-color: white;; */
    color: green;
    /* display: block; */
    /* position: absolute; */
    /* align-self: flex-end; */
    /* padding: 0; */
    /* right: -26px; */
    /* top: 0px; */
    list-style: 20px;
    font-size: 20px;
}

.datetime .menu::after {
    font-family: 'Material Icons';
    font-size: 20px;
    content: '\e5d2'
}

.datetime .menu:hover {
    color: red;
}

.event .nameplace {
    display: flex;
    justify-content: space-around;
}

.nameplace .eventname {
    font-size: 16px;
}

.event .patientname {
    font-weight: 600;
    text-align: center;
}

.event .operationinfo {
    font-size: 12px;
    text-align: center;;
}

.menu .eventmenu {
    font-size: 14px;
    color: black;

    background-color: white;
    width: 100px;;
    border: 1px solid black;
    display: none;
}

.menu .eventmenu ul {
    list-style: none;
}
.menu .eventmenu ul li {
    text-align: center;
}
.eventmenu .active {
    display: block;
}


.footer {
    /* background-color: black; */
    position: absolute;
    width: 100%;
    bottom: 8px;
    font-size: 10pt;
    text-align: center;
    color: rgb(190, 189, 189)
}