/* ========== POPUP CRÉATEUR - Styles spécifiques ========== */

#creatorPopupContent {
    padding: 6px;
}

.creator-birthdate {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9em;
}

.creator-works-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-group {
    padding: 6px;
    background: var(--theme-color);
    border-radius: 12px;
    filter: opacity(0.8);
}

.media-group-title {
    padding: 4px 6px;
    color: white;
    border-radius: 8px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.media-works-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.creator-work-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 5px 6px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.creator-work-item:last-child {
    border-bottom: none;
}

.work-title-block {
    line-height: 1.3;
}

.work-title {
    font-weight: 700;
}

.work-year {
    font-size: 0.9em;
    opacity: 0.9;
}

.work-creator-label {
    font-size: 0.85em;
    opacity: 0.8;
    font-style: italic;
}

.work-role {
    font-size: 0.8em;
    opacity: 0.8;
    font-style: italic;
    text-align: right;
}