body {
    font-family: Arial, sans-serif;
}

.calendar {
    max-width: 300px;
    margin: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day, .dayout {
    /* border: 1px solid #ccc; */
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.dayout {
    border: none;
}

.event {
    background-color: #ffeb3b;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: block;
}

.week:hover {
    background-color: yellow;
}


.day {
    position: relative;
}

.badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 12px;
    opacity: 40%;
}