
* {
    box-sizing: border-box;
}

html,
body,
#react-entry-point,
#_dash-app-content,
#_dash-app-content > div {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

html,
body {
    overflow: hidden;
    background: #f2f2f2;
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

.home-shell {
    position: relative;
    width: min(100vw, calc(100vh * 16 / 9));
    height: min(100vh, calc(100vw * 9 / 16));
    min-width: 900px;
    min-height: 506.25px;
    margin: auto;
    overflow: hidden;
    background: #ffffff;
    direction: ltr;
}

.home-nav {
    position: absolute;
    z-index: 10;
    left: 2.2%;
    top: 36.8%;
    width: 10.7%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.home-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(48px, 7.2vh, 68px);
    padding: 0 8px;
    border: 1.2px solid #292929;
    border-radius: 5px;
    background: #ffffff;
    color: #282828;
    direction: rtl;
    font-size: clamp(12px, 1.05vw, 16px);
    text-decoration: none;
}

.home-nav-button:hover {
    background: #efefef;
}

.home-nav-button.active {
    background: #252421;
    color: #ffffff;
}

.home-brand-wrap {
    position: absolute;
    left: 13.1%;
    top: 2.2%;
    width: 75.3%;
    height: 95.7%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-brand-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}