/* Success Popup State */
.wpt-success-state {
    padding: 20px;
    background: #fff;
    border: none !important;
}

.wpt-success-popup h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.wpt-popup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wpt-main-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Back Button */
.wpt-btn-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.wpt-btn-back:hover {
    background: #555;
}

/* Download Button */
.wpt-btn-download {
    background: #e53935;
    /* Red */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(229, 57, 53, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpt-btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(229, 57, 53, 0.4);
    color: #fff;
}

/* Action Group */
.wpt-action-group {
    display: flex;
    gap: 10px;
}

.wpt-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.wpt-btn-circle:hover {
    transform: scale(1.1);
    background: #d32f2f;
}