.rhwc-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 24px;
    margin-top: 20px;
    border-radius: 8px;
}

.rhwc-card h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3em;
}

.rhwc-hero-header {
    background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.rhwc-hero-header h1 {
    color: #fff !important;
    margin: 0 0 10px 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rhwc-version-badge {
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.rhwc-hero-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
}

.rhwc-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.rhwc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rhwc-stat-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e4e7;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rhwc-stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.rhwc-stat-icon {
    font-size: 32px;
    color: #0073aa;
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.rhwc-stat-box h3 {
    font-size: 36px;
    margin: 0 0 5px 0;
    color: #1d2327;
}

.rhwc-stat-box p {
    margin: 0;
    color: #646970;
    font-weight: 500;
}

.rhwc-quick-links {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.rhwc-quick-links li {
    margin-bottom: 15px;
}

.rhwc-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    color: #3c434a;
    transition: all 0.2s ease;
}

.rhwc-action-btn:hover {
    background: #fff;
    border-color: #2271b1;
    color: #2271b1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rhwc-action-btn.primary {
    background: #f0f6fc;
    border-color: #0a4b78;
    color: #0a4b78;
}

.rhwc-action-btn.primary:hover {
    background: #e1f0fa;
}

.rhwc-action-btn .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: inherit;
}

.rhwc-action-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.rhwc-action-text small {
    display: block;
    color: #646970;
    font-size: 13px;
}

.rhwc-status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.rhwc-status-badge.status-approved {
    background: #c6e1c6;
    color: #5b841b;
}

.rhwc-status-badge.status-pending {
    background: #faddb3;
    color: #8a6d3b;
}

.rhwc-dashboard-widget {
    padding: 10px 0;
}

#rhwc-single-message, #rhwc-bulk-message {
    margin-top: 10px;
}

@media (max-width: 782px) {
    .rhwc-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
