.cblc-status-panel { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    margin-bottom: 20px; 
    max-width: 600px; 
}
.status-box { 
    background: #fff; 
    padding: 20px; 
    text-align: center; 
    box-shadow: 0 1px 1px rgba(0,0,0,.04); 
    border: 1px solid #c3c4c7;
}
.status-box h4 { 
    margin: 0 0 10px; 
    font-size: 14px; 
    color: #50575e; 
}
.status-box p { 
    font-size: 2em; 
    font-weight: bold; 
    margin: 0 0 10px; 
}
.status-box.active p { 
    color: #00a32a; 
}
.status-box.inactive p { 
    color: #d63638; 
}
.status-box a { 
    text-decoration: none; 
}

/* Estilos para a Caixa de Doação */
.cblc-donation-panel {
    background: #fff;
    padding: 1px 20px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #c3c4c7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.cblc-donation-panel h2 {
    font-size: 1.1em;
}