/* Hide everything by default */
body > * {
    display: none !important;
}

/* Show only the CheckInValueTagging section and its descendants */
div[section="CheckInValueTagging"], 
div[section="CheckInValueTagging"] * {
    display: block !important;
}

/* Optional: Make the background clean and professional */
body {
    background: #f4f6fa;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Optional: Style the CheckInValueTagging section for a business/professional look */
div[section="CheckInValueTagging"] {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
}

/* Example card style for value tags */
div[section="valuetag"] {
    background: #f8fafc;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Headings and labels */
div[relevance]::before {
    content: attr(relevance) ": ";
    font-weight: bold;
    color: #2563eb;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    div[section="CheckInValueTagging"] {
        padding: 16px 4px;
    }
    div[section="valuetag"] {
        padding: 12px;
    }
}