body {
        font-family: "Inter", sans-serif;
        background-color: #ffffff;
        color: #000000;
        margin: 0;
        padding: 0;
        min-height: 100vh;
      }

      .main-container {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
      }

      /* Left agenda column - fixed for desktop */
      .agenda-column {
        position: sticky;
        width: 250px;
        top: 2rem;
        align-self: start;
        height: calc(100vh - 4rem);
        overflow-y: auto;
      }

      .agenda-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
        position: relative;
      }

      /* Decorative line above agenda title */
      .agenda-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 30%;
        background-color: #009cff;
      }

      .agenda-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
        color: #000;
      }

      /* Right content column - scrollable */
      .right-content {
        grid-column: 2;
        height: calc(100vh - 4rem);
        overflow-y: auto;
        padding-right: 1rem;
      }

      /* Responsive adjustment for the decorative line */
      @media (max-width: 768px) {
        .agenda-header::before {
          width: 15%;
          height: 3px;
        }
      }

      .gmt-info {
        font-size: 1rem;
        color: #333;
        margin-bottom: 5px;
        text-align: justify;
      }

      .current-time {
        font-size: 1rem;
        color: #555;
        margin-top: 0.5rem;
      }

      /* Day navigation tabs */
      .day-nav-container {
        display: flex;
        position: relative;
        border-bottom: 2px solid #ccc;
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
        padding-top: 0.5rem;
      }

      .day-nav-item {
        cursor: pointer;
        padding: 1rem 0;
        position: relative;
        flex: 1;
        text-align: start;
        transition: color 0.3s ease-in-out;
      }

      .day-label {
        font-size: 1.76rem;
        font-weight: 800;
        color: #555;
      }

      .day-date-label {
        font-size: 1.25rem;
        color: #777;
      }

      .day-nav-item.active .day-label,
      .day-nav-item.active .day-date-label {
        color: #000;
      }

      .day-nav-item:hover .day-label,
      .day-nav-item:hover .day-date-label {
        color: #000;
      }

      .day-underline {
        position: absolute;
        bottom: -2px;
        left: 0;
        height: 3px;
        background-color: #009cff;
        width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
      }

      .day-nav-item.active .day-underline,
      .day-nav-item:hover .day-underline {
        opacity: 1;
      }

      /* Tab content for events */
      .tab-content {
        display: none;
      }

      .tab-content.active {
        display: block;
      }

      /* Event card styling - COMPACT VERSION */
      .event-card {
        padding: 1rem 1.5rem;
        border-top: 0.5px solid #ccc;
        border-bottom: 0.5px solid #ccc;
        border-left: 5px solid #eee;
        transition: all 0.3s ease-in-out;
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: start;
        position: relative;
        cursor: pointer;
        color: #000000;
        min-height: auto;
      }

      .event-card:hover {
        border-color: #009cff;
      }

      /* Styling for time and duration within event card */
      .time-duration-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        justify-content: space-between;
        gap: 0.25rem;
      }

      .event-time {
        font-weight: 700;
        font-size: 1.5rem;
        color: #000;
        line-height: 1.2;
      }

      .event-location-on-card {
        font-size: 1rem;
        color: #666;
      }

      .event-duration {
        font-size: 1rem;
        color: #444;
      }

      .event-details {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        gap: 0.25rem;
      }

      .event-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #009cff;
        line-height: 1.2;
        margin-bottom: 0;
      }

      .event-speakers {
        font-size: 1.1rem;
        color: #333;
      }

      /* Reduce space between agenda cards */
      .event-card + .event-card {
        margin-top: -1px;
      }

      /* Left vertical line and dot on hover */
      .event-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 1px;
        background-color: transparent;
        transition: background-color 0.3s ease-in-out;
      }

      .event-card:hover::before {
        background-color: #009cff;
      }

      .event-card::after {
        content: "";
        position: absolute;
        left: -7px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #009cff;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
      }

      .event-card:hover::after {
        opacity: 1;
      }

      /* Right vertical line and dot on hover */
      .hover-right-line {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 1px;
        background-color: transparent;
        transition: background-color 0.3s ease-in-out;
      }

      .event-card:hover .hover-right-line {
        background-color: #009cff;
      }

      .hover-right-dot {
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #009cff;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
      }

      .event-card:hover .hover-right-dot {
        opacity: 1;
      }

      /* Info icon (calendar with plus) styling */
      .info-icon {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
        padding: 8px;
        border-radius: 50%;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
      }

      .event-card:hover .info-icon {
        opacity: 1;
        background-color: #e0f2fe;
      }

      /* Styles for the filter dropdown */
      .filter-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: none;
      }

      .filter-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
      }

      .industry-select {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        background-color: #f9f9f9;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
      }

      /* Color coding for the filter dropdown's left border - THICKER BORDER */
      .filter-highlight-nsssc {
        border-left-color: #009cff !important;
        border-left-width: 12px !important;
      }

      .filter-highlight-sro {
        border-left-color: #232b38 !important;
        border-left-width: 12px !important;
      }

      .filter-highlight-smh {
        border-left-color: #2e7d32 !important;
        border-left-width: 12px !important;
      }

      .filter-highlight-asb {
        border-left-color: #ff6f00 !important;
        border-left-width: 12px !important;
      }

      .filter-highlight-cscs {
        border-left-color: #c62828 !important;
        border-left-width: 12px !important;
      }

      .filter-highlight-vendor {
        border-left-color: #8b4513 !important;
        border-left-width: 12px !important;
      }

      /* Color coding for event highlights */
      .highlight-nsssc {
        border-left-color: #009cff;
      }

      .highlight-sro {
        border-left-color: #232b38;
      }

      .highlight-smh {
        border-left-color: #2e7d32;
      }

      .highlight-asb {
        border-left-color: #ff6f00;
      }

      .highlight-cscs {
        border-left-color: #c62828;
      }

      .highlight-vendor {
        border-left-color: #8b4513;
      }

      /* Styling for non-highlighted events */
      .event-card-subdued {
        opacity: 0.8;
        filter: grayscale(10%);
        transition: all 0.3s ease-in-out;
      }

      /* Modal styles */
      .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 9999;
      }

      .modal-content {
        background-color: white;
        padding: 0;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        position: relative;
        width: 80%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
      }

      .modal-close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        cursor: pointer;
        border: none;
        background: none;
        padding: 0;
        z-index: 11;
        color: #fff;
      }

      .modal-header-section {
        background-color: #009cff;
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 5;
      }

      .modal-header-section h3 {
        color: #fff;
        margin-bottom: 0;
        font-size: 1.75rem;
      }

      .modal-body-content {
        padding: 0 2rem 2rem 2rem;
      }

      .modal-title-and-calendar-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 1.5rem;
        gap: 0.5rem;
      }

      .modal-main-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #000;
        line-height: 1.2;
        flex-grow: 1;
      }

      .modal-sub-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        color: #666;
        margin-top: 0.5rem;
        font-weight: 500;
      }

      .modal-description {
        margin-top: 1.5rem;
        line-height: 1.6;
        color: #333;
        text-align: justify;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
      }

      .add-to-calendar-heading-button {
        font-size: 0.9rem;
        font-weight: 600;
        color: #777;
        text-transform: uppercase;
        padding: 0.75rem 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: #f9f9f9;
        flex-shrink: 0;
      }

      .add-to-calendar-heading-button:hover {
        color: #009cff;
        border-color: #009cff;
        background-color: #e0f2fe;
      }

      .add-to-calendar-heading-button .add-to-calendar-icon {
        width: 20px;
        height: 20px;
        stroke: #777;
        fill: none;
        transition: stroke 0.3s ease;
      }

      .add-to-calendar-heading-button:hover .add-to-calendar-icon {
        stroke: #009cff;
      }

      .modal-speaker-card {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        gap: 1rem;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #eee;
        background-color: #f9f9f9;
      }

      /* Initials placeholder styling */
      .initials-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #009cff;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.125rem;
        flex-shrink: 0;
      }

      .modal-speaker-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
      }

      .modal-speaker-details {
        display: flex;
        flex-direction: column;
      }

      /* Remove margin-bottom from speaker name */
      .modal-speaker-name {
        font-weight: 600;
        color: #000;
        margin-bottom: 0 !important;
      }

      .modal-speaker-title-company {
        margin: 0;
        font-size: 0.85rem;
      }

      /* Title color (black/dark) */
      .speaker-title {
        color: #000;
      }

      /* Company color changed to blue */
      .speaker-company {
        color: #009cff !important;
      }

      .modal-section-heading {
        font-size: 0.9rem;
        font-weight: 600;
        color: #777;
        text-transform: uppercase;
        margin-bottom: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .modal-moderator-section .modal-section-heading {
        margin-top: 2rem;
      }

      .add-to-calendar-buttons-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
      }

      .add-to-calendar-button {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        background-color: #f0f0f0;
        color: #333;
        padding: 0.75rem 0.5rem;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        border: 1px solid #ddd;
        transition: background-color 0.3s ease, border-color 0.3s ease;
      }

      .add-to-calendar-button:hover {
        background-color: #e0e0e0;
        border-color: #ccc;
      }

      .add-to-calendar-button img {
        width: 28px;
        height: 28px;
        object-fit: contain;
      }

      .action-buttons-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: start;
      }

      .action-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        border: 1px solid #ccc;
        background-color: #f9f9f9;
        color: #333;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, border-color 0.3s ease,
          color 0.3s ease;
        gap: 0.5rem;
        width: auto;
      }

      .action-button:hover {
        background-color: #e0f2fe;
        border-color: #009cff;
        color: #009cff;
      }

      .action-button svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
      }

      /* Print Styles */
      @media print {
        @page {
          margin: 0;
          size: A4 portrait;
        }

        html,
        body {
          margin: 0;
          padding: 0;
          -webkit-print-color-adjust: exact !important;
          print-color-adjust: exact !important;
          font-family: "Inter", sans-serif !important;
        }

        body > *:not(.print-container) {
          display: none !important;
        }

        .print-container {
          display: block !important;
          width: 100%;
          height: auto;
          margin: 0;
          padding: 0;
          font-family: "Inter", sans-serif !important;
        }

        .print-header {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          margin-bottom: 1cm;
          padding: 1cm;
          border-bottom: 2px solid #009cff;
          text-align: center;
          font-family: "Inter", sans-serif !important;
        }

        .print-header img {
          max-width: 120px;
          height: auto;
          margin-bottom: 0.5cm;
        }

        .print-header h1 {
          font-size: 1.8em;
          color: #000;
          margin: 0;
          padding: 0;
          font-weight: 700;
          line-height: 1.3;
          font-family: "Inter", sans-serif !important;
        }

        .print-content-area {
          display: block !important;
          padding: 1cm;
          font-family: "Inter", sans-serif !important;
        }

        .print-content-area .tab-content {
          display: block !important;
        }

        .event-card {
          border-top: 0.5px solid #ccc !important;
          border-bottom: 0.5px solid #ccc !important;
          border-left: 0.5px solid #ccc !important;
          border-right: 0.5px solid #ccc !important;
          margin-bottom: 0.25cm !important;
          page-break-inside: avoid;
          color: #000000 !important;
          background-color: #ffffff !important;
          box-shadow: none !important;
          padding: 0.75rem 1rem !important;
          display: grid !important;
          grid-template-columns: 1fr 2fr !important;
          gap: 1rem !important;
          align-items: start !important;
          font-family: "Inter", sans-serif !important;
        }

        .event-card .event-time,
        .event-card .event-title,
        .event-card .event-location-on-card,
        .event-card .event-duration,
        .event-card .event-speakers {
          color: #000000 !important;
          font-family: "Inter", sans-serif !important;
        }

        .agenda-column,
        .day-nav-container,
        .filter-container,
        .action-buttons-container {
          display: none !important;
        }

        .tab-content {
          display: none;
        }

        .tab-content.active {
          display: block !important;
        }

        .event-card::before,
        .event-card::after,
        .hover-right-line,
        .event-card .hover-right-dot,
        .info-icon {
          display: none !important;
        }

        /* Maintain blue company color in print */
        .speaker-company {
          color: #009cff !important;
        }
      }

      /* Mobile responsiveness */
      @media (max-width: 1024px) {
        .main-container {
          grid-template-columns: 1fr;
          padding: 1rem;
        }

        .agenda-column {
          position: static;
          width: 100%;
          height: auto;
        }

        .right-content {
          grid-column: 1;
          height: auto;
          overflow-y: visible;
          padding-right: 0;
        }
      }

      @media (max-width: 640px) {
        .main-container {
          grid-template-columns: 1fr;
          padding: 1rem;
        }

        .agenda-header {
          padding-top: 0.5rem;
        }

        .day-nav-container {
          flex-direction: row;
          justify-content: space-around;
          gap: 0;
          margin-bottom: 1rem;
        }

        .day-nav-item {
          padding: 0.5rem 0.25rem;
          text-align: center;
        }

        .day-label {
          font-size: 1.2rem;
        }

        .day-date-label {
          font-size: 0.9rem;
        }

        .event-card {
          grid-template-columns: 1fr;
          gap: 1rem;
        }

        .time-duration-container {
          flex-direction: row;
          align-items: center;
          gap: 1rem;
        }

        .event-time {
          font-size: 1.25rem;
        }

        .event-location-on-card {
          margin-top: 0;
          margin-left: 0.5rem;
        }

        .event-duration {
          margin-top: 0;
          margin-left: auto;
        }

        .info-icon {
          right: 1rem;
          transform: translateY(-50%);
        }

        .modal-content {
          padding: 0;
        }

        .modal-body-content {
          padding: 0 1rem 1rem 1rem;
        }

        .modal-main-title {
          font-size: 1.5rem;
        }

        .add-to-calendar-buttons-container {
          grid-template-columns: 1fr 1fr;
        }

        .modal-title-and-calendar-container {
          flex-direction: column;
          align-items: flex-start;
        }

        .add-to-calendar-heading-button {
          width: 100%;
          justify-content: center;
        }
      }