/* Reset default styles */
body,
h1,
h2,
h3,
div {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #181818;
  color: #D7D3D2;
}

/* Calendar styles */
.calendar {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.month {
  margin-bottom: 30px;
}

.header {
  text-align: center;
  background-color: #181818;
  color: white;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #d7d3d2;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.day {
  background-color: #181818;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 15px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
}

h3 {
  font-size: 16px;
}

p {
  margin: 0;
}

.event {
	background-color: #9d3911;
	border-radius: 30px;
	margin-left: -15px; 
	margin-right: -25px; 
	padding-left: 20px; 
	padding-right: 20px; 
	padding-top: 5px;
	padding-bottom: 5px;
}

.note {
  background-color: #4a4a4a;
  text-align: center;
  font-size: 12px;
  margin-left: -30px;
  margin-right: -30px;
  justify-self: flex-end;
}

.highlight{
	border-radius: 5px; 
	border-bottom: 4px solid #8D6EC7;
}
