/* wallpaper da tela de upload */
body:has([data-trigger="anywhere-upload-input"]) {
    background-image: url('/content/images/system/default/home_cover.jpg') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}

/* opcional: escurece um pouco para o texto ficar legível */
body:has([data-trigger="anywhere-upload-input"])::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 0;
}

/* garante que o conteúdo fique acima da camada escura */
body:has([data-trigger="anywhere-upload-input"]) main,
body:has([data-trigger="anywhere-upload-input"]) header,
body:has([data-trigger="anywhere-upload-input"]) .top-bar,
body:has([data-trigger="anywhere-upload-input"]) .content-width {
    position: relative;
    z-index: 1;
}
