body {
  .event {
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
  }

  .event-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 1.2rem;
  }

  .button-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .button-group a {
    text-decoration: none;
    padding: 0.6rem;
    text-align: center;
    background-color: #007acc;
    color: white;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }

  .button-group a:hover {
    background-color: #005fa3;
  }

  @media (min-width: 768px) {
    .button-group {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  .disabled-link {
pointer-events: none;
color: gray;
text-decoration: none;
opacity: 0.5;
cursor: not-allowed;
}


}