@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;800&display=swap");

:root {
    --fc-border-color: transparent;
    --fc-small-font-size: .85em;
    --fc-button-text-color: #fff;
    --fc-button-bg-color: #9E69DC;
    --fc-button-border-color: #2A2A2A;
    --fc-button-hover-bg-color: #5a2c98;
    --fc-button-hover-border-color: #1a252f;
    --fc-button-active-bg-color: #00806c;
    --fc-button-active-border-color: #1a252f;
    --fc-daygrid-event-dot-width: 15px;
    --fc-event-bg-color: #d5cabd;
    --fc-event-border-color: #a36854;
    --fc-event-text-color: #000;
    --fc-today-bg-color: #40E6F0;
    --fc-now-indicator-color: rgb(54, 9, 180);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    background: url("background_forest.jpg");
    background-size: auto 100vh;
}

#canvas {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#border {
    background: linear-gradient(40deg, #FBBA50aa, #ffffffaa, #FCA34Faa);
    border: 1px solid white;
    border-radius: 20px;
    max-width: 55%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

#calendar {
    background: radial-gradient(circle, #2D9584aa 0%, #3EA594aa 100%);
    box-shadow: 0px 0px 33px #839FE4;
    border-radius: 7px;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 980px) {
    #border {
        max-width: 88%;
    }
    .fc .fc-toolbar.fc-header-toolbar  {
        flex-direction: column;
    }
}

.fc .fc-daygrid-day-frame {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fc .fc-scrollgrid-liquid {
    box-shadow: 0px 0px 25px rgba(31, 38, 135, 0.37);
}

.fc-theme-standard td, .fc .fc-scrollgrid-section > * {
    border: 8px solid transparent;
}

.fc .fc-timegrid-slot {
    height: 3em;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid transparent;
}

.fc .fc-daygrid-day-top {
    font-size: 1.4rem;
    font-weight: 600;
}

.fc .fc-col-header-cell-cushion {
    text-decoration: underline;
}

.fc .fc-daygrid-day.fc-day-today {
    border-radius: 15px;
}

.fc .fc-timegrid-col.fc-day-today {
    border-radius: 10px;
}

.fc .fc-timegrid-col {
    border: 2px solid black;
}

.fc-day.fc-day-today.fc-timegrid-col {
    background: rgba(255, 255, 255, 0.25);
}

.fc-direction-ltr .fc-timegrid-col-events {
    margin: 0;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event,
.fc-timegrid-event.fc-event-mirror,
.fc-timegrid-more-link {
    box-shadow: 0 0 0 0px var(--fc-page-bg-color);
    border-radius: 20px;
}

.fc-timegrid-event .fc-event-main {
    text-align: center;
    font-size: medium;
}