/* Name History Modal Styles */
#nameHistoryModal .modal-body {
    background: rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(0, 0, 0, 0.3);
}

#nameHistoryModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#nameHistoryModal .modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

#nameHistoryModal .modal-body::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

#nameHistoryModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: rgba(102, 126, 234, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 10px;
}

.timeline-marker {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #1a1d29;
    border: 2px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker i {
    font-size: 8px;
    color: #667eea;
}

.timeline-content {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.timeline-date {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.time-ago {
    color: #94a3b8;
    font-size: 0.85rem;
}

.timeline-old-name,
.timeline-new-name {
    color: #e2e8f0;
    margin: 5px 0;
}

.empty-state-icon {
    opacity: 0.3;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #667eea;
    font-size: 0.85rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
