.home-logo {
    width: 100%;
    max-width: clamp(320px, 60vw, 800px); /* Min 320px, prefer 60% viewport width, cap at 800px */
    height: auto;
}

@media (max-width: 600px) {
    .home-logo {
        max-width: 85vw;
    }
}

.h-100 {
    height: 100% !important;
}

.dev-environment-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1499;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 92vw;
    padding: 2px 6px 2px 14px;
    border-radius: 999px;
    background-color: #b71c1c;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

    .dev-environment-banner .mud-typography {
        margin: 0;
    }
