.approval-dashboard-db5067b7 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.dash-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: flex-end;
}
.metric {
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}
.metric strong {
    display: block;
    font-size: 24px;
    color: #005f73;
}
.topic-cards-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.topic-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.2s;
}
.topic-card:hover, .topic-card.active {
    border-color: #005f73;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.topic-card h4 {
    margin: 10px 0 0;
    font-size: 16px;
}
.status-indicator {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    background: #eee;
    color: #333;
}
.status-indicator.publish { background: #d4edda; color: #155724; }
.status-indicator.draft { background: #fff3cd; color: #856404; }

.dash-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.action-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.action-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}
.btn-approve { background: #005f73; color: white; }
.btn-revise { background: #e0e0e0; color: #333; }
.comment-box textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}
.btn-save-comment {
    background: #94a3b8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}