.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.branded {
    color: var(--brand-primary);
    font-weight: 600;
}

span.translation-missing {
    background-color: red;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: var(--s-sm);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 0.2rem;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    top: -0.1rem;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

[data-scope="admin"] {
    background-color: var(--light-grey);
    line-height: 1.6;

    .form-input {
        padding: 0.75rem;
        border: 1px solid var(--medium-grey);
        border-radius: 0.375rem;
        font-size: 1rem;
        width: 100%;
        transition: border-color 0.2s ease;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 0.25rem;
    }

    .card {
        background-color: var(--surface);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
        padding: 1.5rem;
        border: 1px solid var(--border);
    }

    .error-message {
        color: var(--alert-fg);
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }
}
