.simple-calendar {
    @apply w-full h-full;
    margin: 0 auto;
    max-width: 100%;
    .calendar-heading {
        width: 100%;
        @apply flex justify-between items-center p-0 py-2;


    }
    .table {
        width: 100%;
        height: 100%;
        th, .day {
            @apply px-2 py-2;
            @apply text-center;
        }
        .today {
            @apply text-blue-700 bg-blue-100;
        }
    }
}