#co-abrir-popup {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.co-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.co-popup-content {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    margin: 100px auto;
    position: relative;
    border-radius: 8px;
}

.co-cerrar-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#co-formulario input,
#co-formulario textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#co-formulario button {
    background-color: #000;
    color: #fff;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
}

.co-shortcode-contenedor {
    text-align: center;
}

.co-comentarios-recientes {
    margin-top: 40px;
    text-align: center;
}

.co-comentarios-recientes .co-fila {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.co-comentarios-recientes .co-celda {
    background: #f1f1f1;
    padding: 16px;
    border-radius: 6px;
    max-width: 220px;
    min-width: 180px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

.co-tabla-comentarios {
    margin-top: 30px;
}

.co-tabla-comentarios .co-fila {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: center;
}

.co-tabla-comentarios .co-celda {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    min-width: 140px;
    max-width: 220px;
    flex: 1 1 180px;
}

.co-tabla-comentarios .co-celda p {
    margin: 8px 0 0 0;
}

.co-form-eliminar {
    margin-top: 10px;
}

.co-form-eliminar button {
    background: #c00;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    border-radius: 4px;
}

