/* Card Container */
.wprc-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    margin-top: 20px;
    padding: 0;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
}

.wprc-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eaecf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wprc-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #1d2327;
}

.wprc-content {
    padding: 20px;
}

/* Tabs do Painel */
.wprc-tabs {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.wprc-tab-link {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    border: 1px solid transparent;
    border-bottom: none;
    margin-bottom: -1px;
    cursor: pointer;
}
.wprc-tab-link.active {
    background: #fff;
    border-color: #ccc;
    border-radius: 4px 4px 0 0;
    color: #0073aa;
}

/* Tabelas */
.wprc-table {
    width: 100%;
    border-collapse: collapse;
}
.wprc-table th { text-align: left; padding: 10px; background: #f9f9f9; border-bottom: 2px solid #eee; }
.wprc-table td { padding: 10px; border-bottom: 1px solid #eee; }

/* Status Box */
.wprc-status-box {
    background: #e3f2fd;
    color: #0c5460;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 4px solid #2196f3;
    display: none; /* JS toggles this */
}