.event-item {
    width: 50%;
    margin: 40px auto;
}

.event-item:not(:last-of-type) {
    border-bottom: 1px solid #A888D1;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }


.event-conference {
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 10px;
}

.presentation-title {
    font-style: italic;
}

.presentation-authors {
    padding-bottom: 5px;
}

.presentation-files {
    color: #A888D1;              /* Couleur par défaut */
    font-weight: bold;
    font-size: 0.8em;
    text-decoration: none;    /* Pas de soulignement */
    transition: color 0.3s ease;
}
.presentation-files:visited {
    color: #A888D1;              /* Couleur par défaut */
    font-weight: bold;
    font-size: 0.8em;
    text-decoration: none;    /* Pas de soulignement */
    transition: color 0.3s ease;
}
/* Survol (hover) */
.presentation-files:hover {
    color: #A888D1;              /* Plus foncé au survol */
    text-decoration: underline;  /* Soulignement au survol */
    font-weight: bold;
    font-size: 0.8em;
}

.event-place {
    padding-top: 10px;
    padding-bottom: 10px;
}
.event-place::before {
    font-weight: bold;
    content: "\f19c ";
    font-family: "Font Awesome 6 Free";
    color: #1C7293; /* Couleur de l’icône */
    margin-right: 10px;
    
}

/* Dates */
.event-date {
    display: inline-block;
    background: #1C7293;   
    color: #F9F3DC;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    white-space: nowrap;   /* empêche le retour à la ligne */
}

.event-status {
    font-weight: bold;
    font-style: italic;
    color: #A888D1; /* Couleur */
    padding-bottom: 10px;
}