.timeline-page {overflow:hidden; margin-bottom:10px;}

.timeline-page h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

#create-event-btn {
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	
	color: white;
}

#submit-new-event {
    margin-top: 10px;
    padding: 10px 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



.date {
  width: 200px; /* Decreased width */
  text-align: center;
  color: #333;
  font-weight: bold;
  position: relative;
  font-size: 12px; /* Decreased font size */
}

.date::after {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% + 1px);
  width: 2px; /* Decreased width */
  height: calc(100% - 35px); /* Decreased height */
  background-color: #eee;
}

.event {
  display: flex;
  margin-bottom: 5px;
}




.event h3 {
    font-size: 18px;
    margin: 0;
}

.event p {
    margin: 5px 0px 10px; padding:10px;
}

.event a {
font-weight:600;
}

.year {
    margin-top: 20px;
}

.year h2 {
  margin: 0;
  padding-bottom: 4px; /* Decreased padding */
  font-size: 14px; /* Decreased font size */
  color: #333;
  font-weight: bold;
  border-bottom: 3px solid #eee; /* Decreased border thickness */
}

.edit-btn {
    background: #ffc107;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.content {
  flex: 1;
  background-color: #f9f9f9;
  padding: 8px; /* Decreased padding */
  border-left: 1px solid transparent; /* Decreased border thickness */
  font-size: 12px; /* Decreased font size */
}

.content h3 {
  margin-top: 0;
  color: #333;
  font-size: 14px; /* Decreased font size */
}

.content p {
  margin: 4px 0 0; /* Adjusted margin */
  color: #666;
  font-size: 12px; /* Decreased font size */
  max-width: 100%;
}


.t-form input[type="text"],
.t-form input[type="number"],
.t-form textarea,
.t-form select {
  height: 30px;
  padding: 5px;
  font-size: 15px;
  line-height: 1.4;
  box-sizing: border-box;
  vertical-align: middle;
}
