/* Styles pour les événements */
.event-container {
    margin-bottom: 80px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.event-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.event-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, red, #ff6666);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.event-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.event-badge {
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: bold;
}

.event-docs-count {
    color: #e0e0e0;
    font-style: italic;
}