/* ============================
   EVENTS PAGE STYLES
   ============================ */

/* General container */
#program-agenda.agenda.dle{
    text-align: left;
}

#cent{
    text-align:left;
}
.event,
.event-details {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Headings */
.event h1,
.event-details h1 {
  font-size: 28px;
  margin-bottom: 1rem;
  color: #222;
}

.event h2,
.event h3,
.event-details h2,
.event-details h3 {
  color: #0056a6;
  margin-bottom: 0.75rem;
}

.event h2,
.event-details h2 {
  font-size: 1.8rem;
  border-left: 4px solid #0077cc;
  padding-left: 10px;
  margin-bottom: 1rem;
}

.event h3,
.event-details h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

/* Text */
.event p,
.event-details p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.event-details strong {
  color: #0077cc;
}

/* Agenda section */
.agenda {
  margin-top: 1.5rem;
}

li::marker {
  content: "✧ "; /* Replaces the default marker with a rocket emoji */
  color: blue; /* Styles the custom marker */
  font-size: 1.2em;
}

ul, li{
    padding-left:20px;
}

.agenda ol {
  padding-left: 1.2rem;
}

.agenda li {
  margin-bottom: 1.2rem;
}

.agenda strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.agenda ul {
  list-style: disc;
  margin-left: 1.5rem;
  color: #555;
}

/* Highlighted details box */
.details {
  background: #f3f7fb;
  border-left: 4px solid #0056a6;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

/* Links */
a {
  color: #0056a6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Registration Section */
.event-register .card,
.event-details .card {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-top: 25px;
}

/* Form rows */
.form-row {
  margin-bottom: 15px;
}

/* Inputs & textarea */
.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.input:focus {
  border-color: #0077cc;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,119,204,0.2);
}

textarea.input {
  min-height: 100px;
  resize: vertical;
}

/* Button */
.btn.primary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  background: #0077cc;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn.primary:hover {
  background: #005fa3;
}

/* Flash messages */
.flash {
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.flash.success {
  background-color: #e6f9ed;
  border: 1px solid #2ecc71;
  color: #1e7e34;
}

.flash.error {
  background-color: #fdecea;
  border: 1px solid #e74c3c;
  color: #a71d2a;
}

/* Responsive */
@media (max-width: 768px) {
  .event,
  .event-details {
    padding: 1.5rem;
  }

  .event h1,
  .event-details h1 {
    font-size: 24px;
  }

  .btn.primary {
    font-size: 14px;
    padding: 10px 16px;
  }
}