.cardst {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    background-color: rgba(244, 244, 246, 255);
    color: black;
    border-color: rgba(230, 230, 230, 255);
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap; 
    width: 120px; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

.setmodeldetail{
padding-top: 50px;
padding-left: 80px;
padding-right: 80px;
}

body{
  margin:0cm;
  padding-top:2cm;
}

.calendar {
max-width: 100%;
max-height: auto;  
margin: 0 auto;
border: 0px solid #ccc;
border-radius: 5px;
padding: 0px;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}

.days {
display: grid;
grid-template-columns: repeat(7, 1fr);
margin-bottom: 0px;
  background-color: #f2f2f2;
  
}

.day {
padding: 5px;
font-weight: bold;

}

.datescan {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-rows: 100px 100px 100px 100px 100px 100px;
  
}

.date {
padding: 5px;
cursor: pointer;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc; 
border-top: 1px solid #ccc;
display: flex; 
align-items: flex-start; 
justify-content: flex-start; 
}

.date:hover {
background-color: #f2f2f2;
}

.current-month {
font-weight: bold;
} 