body {
        background-color: #f0f2f3;
      }

      .bg-lightgray {
        background-color: #f0f2f3;
      }

      .lexend {
        font-family: "Lexend", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
      }

      .btn:hover {
        background-color: #1e2b41;
      }

      /* Main */
      #main img {
        z-index: 999;
      }

      .nav .profile-img,
      .user-profile .profile-img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        background-color: #344767;
        overflow: hidden;
      }

      .nav img {
        max-width: 100%;
        max-height: 100%;
        display: block;
      }

      /* map */
      #map {
        height: 50vh;
        max-height: 600px;
        width: 100%;
      }

      .timelist {
        height: 100px;
        width: 350px;
        border: 1px solid red;
        color: black;
        margin-top: 20px;
        padding-top: 10px;
        padding-left: 10px;
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      th,
      td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
      }

      th {
        background-color: #f2f2f2;
      }

      .time-slot {
        font-weight: bold;
      }

      .available {
        background-color: lightgreen;
      }

      .unavailable {
        background-color: #ffcccc;
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
      }

      .card-header,
      .btn {
        background-color: #344767;
      }

      .btn {
        color: #ffffff;
      }

      /* Responsive styling for mobile */
      @media (max-width: 768px) {
        .image-container img {
          width: 100%;
          height: auto; /* Ensure images scale down proportionally */
        }

        .text-container {
          font-size: 1.2rem; /* Adjust text size for better readability */
          padding: 1rem; /* Add padding to ensure text doesn't touch the edges */
        }

        h1.display-6 {
          font-size: 1.5rem; /* Adjust heading size for mobile screens */
        }

        .btn {
          font-size: 1rem;
          padding: 0.75rem 1rem; /* Adjust button size */
        }

        .image-container {
          margin-top: 2rem;
        }
      }