.fetcher-progress-container {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5em;
    height: 25px;
}
.fetcher-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4caf50, #81c784);
    color: white;
    text-align: center;
    line-height: 25px;
    transition: width 0.25s ease-in-out;
    font-weight: 500;
}
.fetcher-progress-text {
    font-size: 0.9em;
    color: #444;
    margin-bottom: 1em;
}
.fetcherDashboard {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.fetcherDashboard th, .fetcherDashboard td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}
.fetcher-fade-in {
    animation: fadeIn 0.3s ease-out;
}
.fetcher-fade-out {
    animation: fadeOut 0.5s ease-in forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    from { opacity: 1; height: auto; }
    to { opacity: 0; height: 0; margin: 0; padding: 0; }
}