.vp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vp-table th, .vp-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.vp-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Button Container */
.vp-action-bar {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Base Button Style */
.vp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #0073aa; /* WordPress Blue */
    color: #fff !important; /* Force white text */
    text-decoration: none;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vp-btn:hover, .vp-btn:focus {
    background-color: #005177;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.vp-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Secondary Button (Dark/Edit) */
.vp-btn-secondary {
    background-color: #444;
}

.vp-btn-secondary:hover {
    background-color: #222;
}

/* Outline/Cancel Button */
.vp-btn-outline {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #555 !important;
    box-shadow: none;
}

.vp-btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #999;
    color: #333 !important;
}

/* Utility */
.vp-error {
    color: #dc3232;
    border: 1px solid #dc3232;
    padding: 10px;
    background: #fbeaea;
    margin-bottom: 10px;
}

/* Forms */
.vp-form-table {
    max-width: 600px;
}
.vp-input, .vp-textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; 
}
.vp-textarea {
    height: 100px;
}

/* Layout Helpers */
.vp-header-row {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.vp-header-title {
    margin: 0 !important;
}
.vp-section-hidden {
    display: none;
}
.vp-text-center {
    text-align: center !important;
}

/* Red / Danger Button */
.vp-btn-danger {
    background-color: #dc3232;
}
.vp-btn-danger:hover {
    background-color: #b32d2d;
}
