.event-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.event-link:hover {
    background-color: #0056b3;
    color: white;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 16px;
    font-size: 0.9em;
    color: #0056b3;
}

.modal-body img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.modal-body .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

.modal-body hr {
    margin: 1rem 0;
    opacity: 0.1;
}

.modal-body p strong {
    color: #495057;
}

.modal-body p strong i {
    margin-right: 0.5rem;
    color: #007bff;
}

@media (max-width: 768px) {
    .modal-body .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Animation d'entrée du modal */
.modal.fade .modal-dialog {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}