body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #dbe5f1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dbe5f1;
    padding: 20px;
}

.calendar-container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.calendar td.event {
    background-color: #90caf9;
    position: relative;
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #90caf9;
    }
    to {
        box-shadow: 0 0 20px #90caf9;
    }
}