      /* App Container */
      .app-container {
        display: flex;
        flex-direction: row;
        min-height: 100vh;
        background-color: #f4f6f9;
    }

    
.whats-link {

    background-color: #25D366;
    color: white;
    border-radius: 4px;
    padding: 8px;
}

.store-link {

  background-color: #5149e5;
  color: white;
  border-radius: 4px;
  padding: 8px;
}

.store-link:hover, .whats-link:hover {

  cursor: pointer;
  opacity: 0.8;

}

    /* Calendar Container */
    .calendar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    #calendar {
        width: 100%;
        max-width: 800px;
        height: 60vh;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    #event-details {
        width: 100%;
        max-width: 800px;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
    }

    .vanilla-calendar-day__btn.has-event {
        position: relative;
        background-color: #ffe4e1; /* Cor de destaque */
        border: 2px solid #ff6b6b;
      }
      
      .vanilla-calendar-day__btn .event-indicator {
        position: absolute;
        bottom: 5px;
        right: 5px;
        width: 8px;
        height: 8px;
        background-color: #ff6b6b;
        border-radius: 50%;
        content: "";
        display: inline-block;
      }

    /* Media Queries for Responsiveness */
    @media (max-width: 1024px) {
        .menu {
            width: 200px;
        }

        #calendar {
            height: 50vh;
        }

        #event-details {
            max-width: 600px;
        }
    }

    @media (max-width: 768px) {
        .app-container {
            flex-direction: column;
            align-items: center;
        }

        .menu {
            width: 100%;
            position: fixed;
            top: 0;
            bottom: 0;
            z-index: 1000;
            transform: translateX(-100%);
        }

        .menu.open {
            transform: translateX(0);
        }

        .calendar-container {
            margin-top: 80px;
        }
    }


    #event-details h3 {
        font-weight: bold;
      }
      
      #event-details ul {
        padding: 0;
        list-style: none;
      }
      
      #event-details li {
        transition: background-color 0.3s ease;
      }
      
      #event-details li:hover {
        background-color: #f8f9fa; /* Cor de fundo ao passar o mouse */
      }


      @media (min-width: 768px) {
        .calendar-container {
          display: flex;
          flex-direction: column;
          height: 75vh;
        }
      
        #calendar {
          flex: 1; /* Permite que o calendário ocupe o espaço necessário */
        }
      
        #event-details {
          flex: 1; /* Ocupar o espaço ao lado */
          margin-left: 16px; /* Espaçamento entre o calendário e os detalhes */
        }
      }