.program-event {
    color: var(--secondary);
    font-size: larger;
    font-weight: 700;
    letter-spacing: 4px;
    display: flex;
    justify-content: start;
}

@media (max-width: 768px) {
    .program-event {
        font-size: large;
    }
}

.program-event-title {
    color: var(--primary);
    font-size: x-large;
    font-weight: 700;
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
    margin-top: 8px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .program-event-title {
        font-size: larger;
    }
}

.program-event-datetime {
    background-color: white;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    padding: 10px 20px 10px 20px;
}

.program-event-date {
    color: var(--primary);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    border: 1px solid var(--light);
    border-radius: 20px;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    padding: 10px 20px 10px 20px;
}

@media (max-width: 768px) {
    .program-event-date {
        font-size: 0.8em;
    }
}

.program-event-time {
    color: var(--primary);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    border: 1px solid var(--light);
    border-radius: 20px;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
    padding: 10px 20px 10px 20px;
}

@media (max-width: 768px) {
    .program-event-time {
        font-size: 0.8em;
    }
}

.program-event-place {
    color: var(--primary);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    text-align: center;
    padding: 10px 20px 10px 20px;
}

@media (max-width: 768px) {
    .program-event-place {
        font-size: 0.8em;
    }
}

.program-event-room-container {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.program-event-room {
    background-color: var(--primary);
    color: white;
    font-size: 1.2em;
    font-weight: 800;
    display: inline-block;
    align-items: center;
    border-radius: 18px;
    padding: 4px;
    width: max-content;
    min-width: 150px;
}

@media (max-width: 768px) {
    .program-event-room {
        font-size: 1.1em;
    }
}

.program-event-room2 {
    color: var(--secondary);
    font-weight: 800;
    font-size: larger;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .program-event-room {
        font-size: large;
    }
}

.program-event-room img {
    width: 60px;
}

@media (max-width: 768px) {
    .program-event-room img {
        width: 50px;
    }
}

.program-list {
    background-color: white;
    color: var(--primary);
    font-weight: normal;
    flex-wrap: nowrap;
    align-items: top;
    justify-content: left;
    margin-bottom: 6px;
    padding: 10px 20px 10px 20px;
}

.program-list-title {
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 10px;
    display: block;
}

.speaker-name {
    color: var(--secondary);
    font-weight: 600;
}

.table-program-list {
    border:0;
}

hr.faded {
  border: 0;                /* Remove the default gray border */
  height: 1px;              /* Set the thickness of the line */
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.75), transparent);
  margin: 20px 0;           /* Optional spacing */
}

.cropped-image {
    width: 150px;      /* Or a specific pixel width */
    height: 40px;    /* The height you want the final "crop" to be */
    object-fit: cover; 
    object-position: center; /* Adjusts which part is visible */
}