/* ============================================
       INLINE CONTENT LOADER — Modern & Minimal
       Halaman langsung tampil, loader hanya di
       dalam area konten saja.
    ============================================ */

    /* Topbar progress — tipis di atas #main-content */
    .content-topbar {
      position: relative;
      height: 3px;
      background: transparent;
      overflow: hidden;
      border-radius: 0 0 2px 2px;
      transition: opacity 0.5s ease;
    }
    .content-topbar.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .content-topbar-track {
      position: absolute;
      inset: 0;
      background: rgba(184, 134, 11, 0.15);
    }
    .content-topbar-bar {
      position: absolute;
      top: 0; left: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #5b2c6f, #b8860b);
      border-radius: 2px;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 0 8px rgba(184, 134, 11, 0.6);
    }
    /* Indeterminate shimmer saat pertama kali */
    .content-topbar-bar.indeterminate {
      width: 40% !important;
      animation: topbar-slide 1.6s ease-in-out infinite;
    }
    @keyframes topbar-slide {
      0%   { left: -45%; width: 45%; }
      100% { left: 110%; width: 45%; }
    }

    /* Status badge kecil */
    .content-loader-status {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      color: #9e9e9e;
      letter-spacing: 0.4px;
      transition: opacity 0.4s ease;
    }
    .content-loader-status.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .content-loader-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b8860b;
      animation: dot-pulse 1.4s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes dot-pulse {
      0%, 100% { opacity: 0.3; transform: scale(0.8); }
      50%       { opacity: 1;   transform: scale(1.2); }
    }

    /* Skeleton shimmer untuk placeholder konten */
    .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: skeleton-wave 1.5s ease-in-out infinite;
      border-radius: 6px;
    }
    @keyframes skeleton-wave {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .skeleton-line {
      height: 14px;
      margin-bottom: 10px;
      border-radius: 4px;
    }
    .skeleton-line.w-80 { width: 80%; }
    .skeleton-line.w-60 { width: 60%; }
    .skeleton-line.w-40 { width: 40%; }
    .skeleton-line.w-100 { width: 100%; }
    .skeleton-title {
      height: 22px;
      width: 55%;
      margin-bottom: 16px;
      border-radius: 4px;
    }
    .skeleton-block {
      height: 120px;
      width: 100%;
      border-radius: 8px;
      margin-bottom: 12px;
    }
    .skeleton-card {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
    }
    .skeleton-avatar {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .skeleton-card-body {
      flex: 1;
    }

    /* Iframe Styles */
    #framecontent {
      width: 100%;
      height: 80vh;
      border: none;
    }

    /* Bottom Bar WhatsApp */
    .bottom-bar {
      position: fixed;
      bottom: 20px;
      left: 20px;
      display: flex;
      align-items: center;
      gap: 1rem;
      background-color: #f0f0f0;
      padding: 0.75rem 1rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
      font-size: 0.9rem;
      z-index: 1000;
    }

    .bottom-bar.hidden {
      display: none;
    }

    .form-container {
      margin: 0;
    }

    .form-container h3 {
      margin: 0;
      font-size: 1rem;
    }

    .whatsapp-contact {
      cursor: pointer;
      color: rgb(9, 5, 247);
    }

    .whatsapp-contact img {
      width: 25px;
      vertical-align: middle;
    }

    /* Tab Styles for Agenda */
    .tablink {
      padding: 10px 20px;
      background: #f5debb;
      border: none;
      cursor: pointer;
    }

    .tablink:hover {
      background: #ececec;
    }

    .active-tab {
      background: #fff;
      border-bottom: 3px solid #740000;
      color: #740000;
      font-weight: bold;
    }

    .tabcontent {
      animation: fadeEffect 0.3s;
    }

    @keyframes fadeEffect {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Galeri Tabs */
    .scroll-wrapper {
      position: relative;
    }

    .tabs {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      margin: 0;
      padding: 0 10px;
      list-style: none;
      border-bottom: 0px solid #ccc;
      gap: 1px;
      scroll-snap-type: x mandatory;
    }

    .tabs li {
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    .tabs a {
      display: inline-block;
      padding: 14px 24px;
      background: linear-gradient(to bottom, #f0f0f0 0%, #e8e8e8 100%);
      color: #333;
      text-decoration: none;
      border-radius: 6px 6px 0 0;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid #d0d0d0;
      border-bottom: none;
      white-space: normal;
      text-align: center;
      min-width: 40px;
      transition: all 0.3s ease;
    }

    .tabs a:hover {
      background: linear-gradient(to bottom, #e8e4f3 0%, #ddd5f0 100%);
      border-color: #5b2c6f;
      color: #5b2c6f;
      transform: translateY(-2px);
    }

    .tabs li.selected a {
      font-weight: 700;
      background: linear-gradient(135deg, #5b2c6f 0%, #3d1e4d 100%);
      color: #fff !important;
      border: 1px solid #5b2c6f;
      box-shadow: 0 2px 8px rgba(91, 44, 111, 0.08);
      position: relative;
    }

    .tabs li.selected a::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: #b8860b;
    }

    .scroll-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      color: #c2ac8d;
      border: none;
      padding: 6px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 2;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .scroll-left {
      left: 0;
    }

    .scroll-right {
      right: 0;
    }

    .scroll-button svg {
      width: 16px;
      height: 16px;
    }

    .tabcontents {
      border: 1px solid #5b2c6f;
      padding: 2rem;
      background: #fff;
      border-radius: 0 12px 12px 12px;
      box-shadow: 0 4px 16px rgba(91, 44, 111, 0.12);
    }

    .tabcontents > div {
      display: none;
    }

    .tabcontents > div.active {
      display: block;
    }

    /* Jadwal Petugas Table */
    .table-wrapper {
      overflow-x: auto;
      margin: 1em 0;
    }

    .jadwal-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 7px;
      font-family: Arial, sans-serif;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    .jadwal-table thead {
      background: linear-gradient(135deg, #5b2c6f 0%, #7d3a8f 100%);
      color: white;
    }

    .jadwal-table th {
      padding: 6px 8px;
      text-align: left;
      font-weight: 600;
      font-size: 8px;
      letter-spacing: 0.3px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .jadwal-table th:last-child {
      border-right: none;
    }

    .jadwal-table tbody tr {
      background: white;
      transition: background 0.2s ease;
    }

    .jadwal-table tbody tr:nth-child(even) {
      background: #f9f9f9;
    }

    .jadwal-table tbody tr:hover {
      background: #f0e6f3;
    }

    .jadwal-table td {
      padding: 6px 8px;
      border-bottom: 1px solid #e0e0e0;
      border-right: 1px solid #f0f0f0;
      font-size: 7px;
      max-width: 120px;
      word-wrap: break-word;
      vertical-align: top;
    }

    .jadwal-table td:last-child {
      border-right: none;
    }

    .jadwal-table td.td-left {
      text-align: left;
      vertical-align: top;
    }

    .jadwal-table th.col-saran,
    .jadwal-table td.col-saran {
      max-width: 80px;
      font-size: 6px;
    }

    .pekan-1 { background-color: #fff3cd !important; }
    .pekan-2 { background-color: #d1ecf1 !important; }
    .pekan-3 { background-color: #d4edda !important; }
    .pekan-4 { background-color: #f8d7da !important; }
    .pekan-5 { background-color: #e2e3e5 !important; }

    .jadwal-heading {
      display: inline-block;
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      margin: 1.5em 0 1em;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 0.4em 1.2em;
      background: #f9e6c7;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .jadwal-heading-wrapper {
      text-align: center;
    }

    .tabel-footer {
      text-align: right;
      font-size: 12px;
      color: #666;
      padding: 10px;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .jadwal-table {
        font-size: 6px;
      }
      
      .jadwal-table th,
      .jadwal-table td {
        padding: 4px 6px;
        max-width: 100px;
      }
      
      .jadwal-table th.col-saran,
      .jadwal-table td.col-saran {
        max-width: 60px;
        font-size: 5px;
      }

      .jadwal-heading {
        font-size: 16px;
        padding: 0.3em 0.8em;
        margin: 1em 0;
      }
    }

    @media (max-width: 480px) {
      .jadwal-table {
        font-size: 5px;
      }
      
      .jadwal-table th,
      .jadwal-table td {
        padding: 3px 4px;
        max-width: 80px;
      }
      
      .jadwal-table th.col-saran,
      .jadwal-table td.col-saran {
        max-width: 50px;
        font-size: 4px;
      }
    }

    /* Agenda Cards Styling */
    .tabledef {
      width: 100%;
      border-collapse: collapse;
    }

    .tddate {
      width: 80px;
      text-align: center;
      vertical-align: middle;
      padding: 10px;
    }

    .tdacara {
      padding: 10px;
      vertical-align: middle;
    }

    .date {
      text-align: center;
    }

    .date .month {
      display: block;
      font-size: 14px;
      font-weight: bold;
      color: #740000;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .date h1 {
      margin: 0;
      font-size: 36px;
      font-weight: bold;
      line-height: 1;
    }

    .date h1.day {
      color: #333;
    }

    .date h1.holiday {
      color: #d32f2f;
    }

    .imgiconagenda {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .tddate {
        width: 60px;
      }

      .date .month {
        font-size: 12px;
      }

      .date h1 {
        font-size: 28px;
      }

      .imgiconagenda {
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 480px) {
      .tddate {
        width: 50px;
        padding: 5px;
      }

      .tdacara {
        padding: 5px;
        font-size: 14px;
      }

      .date .month {
        font-size: 10px;
      }

      .date h1 {
        font-size: 24px;
      }

      .imgiconagenda {
        width: 30px;
        height: 30px;
      }
    }

    /* Hover Text */
    /* ============================================
       GALERI ACCORDION — Modern & Elegant
    ============================================ */

    /* Hapus default arrow browser */
    details > summary { list-style: none; }
    details > summary::-webkit-details-marker { display: none; }

    .galeri-accordion {
      margin-bottom: 8px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(86, 73, 56, 0.1);
      transition: box-shadow 0.25s ease;
    }
    .galeri-accordion:hover {
      box-shadow: 0 3px 12px rgba(86, 73, 56, 0.18);
    }

    .galeri-accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 16px;
      background: linear-gradient(135deg, #7a6655 0%, #9a8068 100%);
      cursor: pointer;
      user-select: none;
      gap: 10px;
      transition: background 0.25s ease;
    }
    .galeri-accordion-header:hover {
      background: linear-gradient(135deg, #8a7465 0%, #aa9075 100%);
    }
    .galeri-accordion.open .galeri-accordion-header {
      background: linear-gradient(135deg, #7a6655 0%, #564938 100%);
      border-radius: 10px 10px 0 0;
    }

    .galeri-accordion-title {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
    }
    .galeri-accordion-month {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 15px;
      font-weight: 700;
      color: #ffeac9;
      letter-spacing: 0.3px;
    }
    .galeri-accordion-hint {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.4px;
      transition: color 0.25s ease;
    }
    .galeri-accordion.open .galeri-accordion-hint {
      color: rgba(255,255,255,0.3);
    }
    .galeri-accordion-header:hover .galeri-accordion-hint {
      color: rgba(255,255,255,0.7);
    }

    /* Chevron icon */
    .galeri-accordion-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: rgba(255,255,255,0.7);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                  color 0.25s ease;
    }
    .galeri-accordion.open .galeri-accordion-chevron {
      transform: rotate(180deg);
      color: #b8860b;
    }

    /* Accordion body */
    .galeri-accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      background: #f5debb;
      border: 1px solid rgba(86, 73, 56, 0.12);
      border-top: none;
      border-radius: 0 0 10px 10px;
    }
    .galeri-accordion.open .galeri-accordion-body {
      max-height: 2000px;
    }
    .galeri-accordion-inner {
      padding: 12px 12px 8px;
    }

    /* Item list di dalam accordion */
    .galeri-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      margin-bottom: 7px;
      background: #faedda;
      border-radius: 8px;
      border: 1px solid rgba(86, 73, 56, 0.08);
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 1px 3px rgba(86, 73, 56, 0.07);
    }
    .galeri-item:last-child { margin-bottom: 0; }
    .galeri-item:hover {
      background: #fef9f2;
      border-color: #b8860b;
      transform: translateX(3px);
      box-shadow: 0 2px 8px rgba(184, 134, 11, 0.15);
    }
    .galeri-item:active {
      transform: translateX(1px);
    }

    .galeri-item-img {
      width: 72px;
      height: 72px;
      border-radius: 7px;
      object-fit: cover;
      flex-shrink: 0;
      background: #f0ebe4;
    }
    .galeri-item-info {
      flex: 1;
      min-width: 0;
    }
    .galeri-item-date {
      font-size: 11px;
      font-weight: 600;
      color: #b8860b;
      letter-spacing: 0.3px;
      margin-bottom: 3px;
    }
    .galeri-item-title {
      font-size: 13px;
      font-weight: 700;
      color: #2c2c2c;
      line-height: 1.35;
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .galeri-item-meta {
      font-size: 11px;
      color: #9e9e9e;
    }
    .galeri-item-arrow {
      width: 16px;
      height: 16px;
      color: #ccc;
      flex-shrink: 0;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .galeri-item:hover .galeri-item-arrow {
      color: #b8860b;
      transform: translateX(3px);
    }

    /* Animasi masuk item setelah accordion buka */
    @keyframes galeriItemIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .galeri-accordion.open .galeri-item {
      animation: galeriItemIn 0.25s ease-out both;
    }

    /* Kategorial Card Styles */
    .kategorial-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      margin-bottom: 16px;
      background: #f7e0be;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(91, 44, 111, 0.08);
      position: relative;
      overflow: hidden;
    }

    .kategorial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #5b2c6f 0%, #b8860b 100%);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .kategorial-card:hover {
      transform: translateX(8px);
      box-shadow: 0 8px 24px rgba(91, 44, 111, 0.15);
      border-color: rgba(91, 44, 111, 0.2);
    }

    .kategorial-card:hover::before {
      transform: scaleY(1);
    }

    .kategorial-card:active {
      transform: translateX(4px) scale(0.98);
    }

    .kategorial-icon-wrapper {
      flex-shrink: 0;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(91, 44, 111, 0.25);
      transition: transform 0.3s ease;
      padding: 10px;
    }

    .kategorial-card:hover .kategorial-icon-wrapper {
      transform: rotate(5deg) scale(1.05);
    }

    .kategorial-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 10px;
      filter: brightness(1.1);
    }

    .kategorial-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      min-height: 70px;
    }

    .kategorial-title {
      margin: 0;
      font-family: 'Montserrat', 'ArchivoNarrow', Arial, sans-serif;
      font-size: 1.15em;
      font-weight: 700;
      color: #2c1a3d;
      line-height: 1.3;
      letter-spacing: 0.3px;
    }

    .kategorial-description {
      margin: 0;
      font-family: 'ArchivoNarrow', Arial, sans-serif;
      font-size: 0.95em;
      color: #666;
      line-height: 1.5;
      letter-spacing: 0.2px;
    }

    .kategorial-arrow {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(91, 44, 111, 0.08);
      border-radius: 50%;
      color: #8f5401;
      transition: all 0.3s ease;
    }

    .kategorial-card:hover .kategorial-arrow {
      background: #8f5401;
      color: white;
      transform: translateX(4px);
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .kategorial-card {
        gap: 16px;
        padding: 16px;
      }

      .kategorial-icon-wrapper {
        width: 60px;
        height: 60px;
      }

      .kategorial-title {
        font-size: 1.05em;
      }

      .kategorial-description {
        font-size: 0.9em;
      }
    }

    @media screen and (max-width: 480px) {
      .bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        left: 10px;
        right: 10px;
      }

      .tabs a {
        padding: 12px 16px;
        font-size: 13px;
      }

      .tabcontents {
        padding: 1.5rem;
      }

      .loading-container {
        padding: 30px 20px;
      }

      .loading-text {
        font-size: 16px;
      }

      .kategorial-card {
        gap: 12px;
        padding: 14px;
      }

      .kategorial-icon-wrapper {
        width: 55px;
        height: 55px;
      }

      .kategorial-title {
        font-size: 1em;
      }

      .kategorial-description {
        font-size: 0.85em;
      }

      .kategorial-arrow {
        width: 28px;
        height: 28px;
      }
    }
    /* ============================================
       PROFILE ITEM — shared card untuk AI, Wilayah, DPP
    ============================================ */
    .profile-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      margin-bottom: 7px;
      background: linear-gradient(135deg, #9a8068 0%, #7a6655 100%);
      border-radius: 8px;
      border: 1px solid rgba(86, 73, 56, 0.08);
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 1px 3px rgba(86, 73, 56, 0.07);
    }
    .profile-item:last-child { margin-bottom: 0; }
    .profile-item:hover {
      background: #fef9f2;
      border-color: #b8860b;
      transform: translateX(3px);
      box-shadow: 0 2px 8px rgba(184, 134, 11, 0.15);
    }
    .profile-item-img {
      width: 52px;
      height: 52px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: #f0ebe4;
      cursor: pointer;
    }
    .profile-item-info {
      flex: 1;
      min-width: 0;
    }
    .profile-item-role {
      font-size: 11px;
      font-weight: 500;
      color: #ffeac9;
      letter-spacing: 0.3px;
      margin-bottom: 2px;
      text-transform: uppercase;
    }
    .profile-item-name {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.5);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .profile-item-pkkt {
      font-size: 11px;
      color: #4a7c4a;
      font-weight: 600;
      margin-top: 2px;
    }
    .profile-item-num {
      font-size: 11px;
      color: #ccc;
      flex-shrink: 0;
      margin-right: 2px;
    }
    .galeri-accordion.open .profile-item {
      animation: galeriItemIn 0.25s ease-out both;
    }

    /* Leader card (Koordinator / Ketua+Wakil) */
    .profile-leader-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #f5efe6 0%, #ede4d6 100%);
      border-radius: 10px;
      border: 1px solid rgba(184, 134, 11, 0.2);
      box-shadow: 0 2px 6px rgba(86, 73, 56, 0.1);
    }
    .profile-leader-info {
      flex: 1;
    }
    .profile-leader-role {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      color: #b8860b;
      letter-spacing: 0.5px;
      margin-right: 6px;
    }
    .profile-leader-name {
      font-size: 13px;
      font-weight: 700;
      color: #2c2c2c;
    }
    .profile-leader-photos {
      display: flex;
      gap: 8px;
    }
    .profile-leader-img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid rgba(184, 134, 11, 0.3);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .profile-leader-img:hover {
      transform: scale(1.1);
      border-color: #b8860b;
    }

    /* ============================================
       AGENDA ITEM — modern event card
    ============================================ */
    .agenda-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 11px 14px;
      margin-bottom: 7px;
      background: linear-gradient(135deg, #9a8068 0%, #7a6655 100%);
      border-radius: 10px;
      border: 1px solid rgba(86, 73, 56, 0.08);
      box-shadow: 0 1px 4px rgba(86, 73, 56, 0.07);
      transition: all 0.2s ease;
      border-left: 3px solid #b8860b;
    }
    .agenda-item:last-child { margin-bottom: 0; }
    .agenda-item:hover {
      background: #fef9f2;
      box-shadow: 0 3px 10px rgba(184, 134, 11, 0.13);
      transform: translateX(3px);
    }
    .agenda-item--holiday {
      border-left-color: #c0392b;
    }
    .agenda-item--holiday .agenda-day--holiday {
      color: #c0392b;
    }
    .agenda-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 50px;
      text-align: center;
      flex-shrink: 0;
    }
    .agenda-month {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      color: #740000;
      letter-spacing: 0.8px;
      margin-bottom: 1px;
    }
    .agenda-item--holiday .agenda-month {
      color: #c0392b;
    }
    .agenda-day {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 32px;
      font-weight: 700;
      color: #ffeac9;
      line-height: 1;
    }
    .agenda-body {
      flex: 1;
      min-width: 0;
    }
    .agenda-title {
      font-size: 13px;
      font-weight: 700;
      color: #ffeac9;
      line-height: 1.3;
      margin-bottom: 2px;
    }
    .agenda-desc {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.5);
      line-height: 1.4;
    }
    .agenda-icon {
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex-shrink: 0;
      opacity: 0.85;
    }

    /* Container agenda */
    #agenda-content {
      padding: 4px 0;
    }