:root {
  --tosca-gradient: linear-gradient(to right, #27ae60, #1abc9c);
}

/* Card Agenda */
.agenda-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agenda-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Sidebar Tanggal */
.date-sidebar {
  background: var(--tosca-gradient);
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.date-sidebar .month {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}
.date-sidebar .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.date-sidebar .year {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Konten Agenda */
.agenda-body .bidang-badge {
  display: inline-block;
  background: #e6faf4;
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
}
.bidang-badge {
  display: inline-block;
  align-self: flex-start;       /* override flex stretch */
  background: rgba(42,157,143,0.1);
  color: #27ae60;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.agenda-body .judul {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}
.agenda-body .deskripsi {
  color: #555;
  line-height: 1.6;
}
.agenda-meta i {
  color: #27ae60;
  margin-right: 0.5rem;
}
.agenda-meta div {
  font-size: 0.9rem;
  color: #444;
}

/* Tombol Aksi */
.btn-learn {
  background: var(--tosca-gradient);
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-learn:hover {
  background: linear-gradient(to right, #1abc9c, #27ae60);
}

.btn-calendar {
  background: transparent;
  color: #27ae60;
  border: 1px solid #27ae60;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-calendar:hover {
  background: var(--tosca-gradient);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Pagination (Bootstrap default styles will apply) */

/* Custom Breadcrumb Separator */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
}

/* Breadcrumb container styling */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Breadcrumb list styling */
.custom-breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
}

/* Link item style */
.custom-breadcrumb .breadcrumb-item a {
  color: #1abc9c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #138f75;
  text-decoration: underline;
}

/* Active item style */
.custom-breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: 600;
}
