.awpd-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999999999 !important;
}

.awpd-modal-content {
    width: 320px;
    margin: 100px auto;
    background: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 99999999999 !important;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.awpd-progress-bar {
    width: 100%;
    height: 10px;
    background: #ddd;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.awpd-progress-fill {
    width: 0%;
    height: 100%;
    background: #0073aa;
}

.awpd-spinner {
    margin: 15px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: awpd-spin 1s linear infinite;
}

@keyframes awpd-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

