@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap'); 

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat",sans-serif;
}
h2{
    text-align: center;
    margin-top: 40px;
}

#details{
    width: 60%;
    margin: auto;
    border: 1px solid  black;
    margin-top: 2rem;
    background-color: #e6e6ff;
    margin-bottom: 0px;
}
table{
    width: 100%;
    border-spacing: 0;
}
table,th,td{
    border: 1px solid black;
    border-collapse: collapse;
    text-align: center;
    line-height: 25px;

}
.green{
    color: green;
    background-color: #ccffcc;

}
.red{
    color: red;
    background-color: #ffcccc;

}
.filter{
    width:50% ;
    display: flex;
    justify-content: space-between;
    margin: auto;
    margin-top: 25px;
}
#by_vaccine,#by_priority,#by_age{
    width: 30%;
    height: 5vh;
    border-radius: 8px;
    padding-left: 5px;
    cursor: pointer;
    background-color: rgb(255, 255, 255,1);
    border-collapse: collapse;
    color: #333333;
    font-weight: bold;
}
#by_vaccine:hover,#by_priority:hover,#by_age:hover{
    background-color: rgba(255,255,255,0.5);
}
main{
    height: 70vh;
}
hr{
    margin-top: 20px;
}
