/**
 * TranslateX Frontend Styles
 *
 * Minimal styles for loading state and error notice
 */

/* Hide content while translating */
body.trx-translating {
    opacity: 0;
}

/* Error notice */
.trx-error-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #f44336;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 99999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

p:has(> .trx-switcher) {
    display: contents;
}

html[lang="de"] [data-lang="de"] {
    display: none;
}
html[lang="en"] [data-lang="en"] {
    display: none;
}
