.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 200;
    z-index: 50000;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.status-bar.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Small gap between progress and button */
}


.status-bar.info {
    background-color: #007BFF; /* blue */
}

.status-bar.warning {
    background-color: #FFA500; /* orange */
}

.status-bar.error {
    background-color: #DC3545; /* red */
}

#dismiss-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

#status-progress {
    width: 100px;
    height: 6px;
    margin-left: 1rem;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
}

#status-progress::-webkit-progress-bar {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

#status-progress::-webkit-progress-value {
    background-color: white;
    border-radius: 3px;
}

#status-progress::-moz-progress-bar {
    background-color: white;
    border-radius: 3px;
}