/* Research Progress Indicator */
.research-progress-indicator {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: rgba(26, 26, 26, 0.98);
    border: 2px solid #e94560;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
    z-index: 1500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.research-progress-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.research-progress-content {
    padding: 16px;
}

/* Header */
.research-progress-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.research-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.research-info {
    flex: 1;
}

.research-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.research-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e94560;
    font-family: 'Courier New', monospace;
}

/* Details */
.research-progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.researchers-info {
    color: #aaa;
}

.researchers-info .label {
    color: #666;
    margin-right: 4px;
}

.researchers-info span:last-child {
    color: #4caf50;
    font-weight: bold;
}

.time-info {
    color: #888;
    font-style: italic;
}

/* Progress Bar */
.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    flex: 1;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e94560 0%, #ff5577 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.6);
    position: relative;
    overflow: hidden; /* Begrenzt Shimmer auf gefüllten Bereich */
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Volle Breite der gefüllten Bar */
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-percentage {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e94560;
    font-family: 'Courier New', monospace;
    min-width: 45px;
    text-align: right;
}

