.month-title{
  background-color: #015b28;
  color: white;
      
  font-size: 15px;
  margin-bottom: 0;
  width: 80px;    
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  min-height: 100%;
  border-radius: 10px;
  max-width: 90px;
  min-height: 65.5px;
  border-left: none;
  text-align: center;
  font-weight: normal;
}

.month-title-no-date{
  background-color: gray;
}

.month-container{   
  border: 1px solid #015b28;
  border-radius: 10px;
  border-left: none;
  max-width: 540px;
  line-height: 1.1;
}

.month-container-no-date{   
  border: 1px solid gray;  
}

.month-container ul {
  list-style: none; /* Remove bullets padrões */
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  }
  
.month-container ul li {
  margin-bottom: 0;
}

  .month-container ul li::before {
    content: "—"; /* Em dash (mais longo e elegante que o "-") */
    color: #015b28; /* Verde elegante (você pode trocar o tom) */
    font-weight: bold; /* Deixa mais grosso */
    display: inline-block;
    width: 1em;
    margin-right: 8px;
  }

  #event-search {
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 10px;
    font-size: 1.1rem;
}

#event-search.form-control {
  height: 32px;
  font-size: 1rem;
  padding: 4px 8px;
}

  @media (max-width: 768px) {
    .month-container {
      flex-direction: column; /* Empilha título e lista */
      align-items: flex-start; /* Alinha à esquerda */
      border-left: 1px solid #015b28;
    }
  
    .month-title {
      width: 100%;
      font-size: 18px; /* Maior para mobile */
      text-align: center;
      padding: 10px;
      margin-bottom: 10px;
    }
  
    .month-container ul {
      padding-left: 20px;
    }

    .month-container ul li {
      margin-bottom: 5px;
      
    }
  
    .month-container ul li a {
      font-size: 15px; /* Aumenta um pouco o tamanho dos links */
      line-height: 1.4;
      word-break: break-word;
      
    }
    .event-title-container{
      flex-direction: column;
    }
    .tags-container{
      margin-top: 10px;
    }
  }