﻿
    /* Container for the calendar and image */
    .calendar-container {
      position: relative;
      width: 800px; /* Adjust as needed */
      height: 600px; /* Adjust as needed */
    }

    /* Google Calendar iframe styling */
    .calendar-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Image styling */
    .overlay-image {
      position: absolute;
      top: 295px; /* Adjust to position the image */
      left: 175px; /* Adjust to position the image */
      width: 500px; /* Adjust image size */
      height: 500px;
      z-index: 10; /* Ensures it appears above the calendar */
    }
