/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    color: #28a745;
}

.modal-body p {
    margin: 10px 0;
    font-size: 16px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    margin-top: 10px;
    border-radius: 5px;
}

.progress {
    height: 100%;
    background-color: #28a745;
    border-radius: 5px;
    transition: width 0.1s ease-out;
}
