
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .calendar-header .arrows {
            cursor: pointer;
            font-size: 2rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto;
        }
        th, td {
            width: 14.28%;
            text-align: center;
            padding: 10px;
        }
        th {
            color: #888;
        }
        td {
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s;
            font-weight: bold;
        }
        td:hover {
            background-color: #3dae2b;
            border-radius: 100%;
        }
        .event-day {
            background-color: #ff6f61;
            border-radius: 100%;
        }
        .current-day {
            background-color: gold !important;
            color: #000;
            border-radius: 100%;
        }
        .events {
			width: 100%;
            margin-top: 20px;
            padding: 10px;
            background-color: #fff;
            color: #000;
            border-radius: 8px;
            display: none;
        }
        .event {
            margin: 10px 0;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 8px;
        }
        .event .date {
            font-weight: bold;
            color: #333;
        }