/*
Plugin Name: WPB Data Management
Description: Custom data management tools for WPB.
Author: B4 Manga Inc
Version: 1.0.0
*/

/* Export Button Styles */
.wpb-export-button {
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 12px 0;
    display: inline-block;
}

.wpb-export-button:hover {
    background-color: #EC2024;
    color: #fff;
}

/* Export Form Wrapper */
.wpb-export-form {
    margin-top: 24px;
    text-align: center;
}