/* .calendar {
  border: 1px solid #ddd;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header button {
  padding: 5px 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.calendar-header button:hover {
  background-color: #0056b3;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  grid-auto-rows: 1fr; /* Ensure that each cell grows proportionally */
}

.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  grid-auto-rows: 1fr; /* Ensure that each cell grows proportionally */
}

.day {
  background: #f9f9f9;
  text-align: left;
  border: 1px solid #ddd;
  position: relative;
  overflow-y: auto; /* Make the container scrollable if content overflows */
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1; /* Ensure weekdays are squares */
  padding: 10px;
}

.day .date {
  font-weight: bold;
  flex: 0 0 auto; /* Fix the height of the date element */
}

.event {
  display: block;
  margin-top: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #fff;
  font-size: 0.85em;
  flex: 0 0 auto;
  cursor: pointer;
}

.event-current {
  background-color: #28a745;
}
.event-member {
  background-color: #dc3545;
}
.event-future {
  background-color: #ffc107;
}
.event-past {
  background-color: #6c757d;
}

.weekday {
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  background-color: #eee;
  border: 1px solid #ddd;
}

.today-events {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.today-events h2 {
  margin-top: 0;
}

.today-events table {
  width: 100%;
  border-collapse: collapse;
}

.today-events th,
.today-events td {
  border: 1px solid #ddd;
  padding: 8px;
}

.today-events th {
  background-color: #f2f2f2;
}

.today-events img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

a#modalJoin {
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    width: fit-content;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a#modalJoin:hover {
    background-color: #0056b3;
    border-color: #004085;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

a#modalJoin:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5);
}

a#modalJoin:active {
    background-color: #004085;
    border-color: #003366;
}

@media (max-width: 768px) {
  .calendar-body {
    grid-template-columns: repeat(7, 1fr);
  }
  .event {
    width: 15px;
    overflow: hidden;
    height: 15px;
    border-radius: 50%;
    color: transparent;
  }
}

@media (max-width: 480px) {
  .calendar-body {
    grid-template-columns: repeat(7, 1fr);
  }
} */

.content-card__header {
    padding: 24px;
}