html, body {
    height: 100%;
    margin: 0;
    background-color: var(--dx-component-color-bg, red); /*#363640;*/ /*#4d4d4d;*/
    font-family: RobotoFallback !important;
    color: var(--dx-color-text, red);
}

.center-container {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center; /* vertical centering */
    height: 75vh; /* full viewport height (optional) */
}

#xs_logo {
    height: 50vh; /* 20% of the viewport width */
    width: auto; /* maintain aspect ratio */
}

.xs-text {
    font-size: 16px;
    font-family: Roboto, RobotoFallback, "Noto Kufi Arabic", Helvetica, Arial, sans-serif;
}

.xs-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: auto;
    padding: 1vh 1vw;
    color: var(--dx-color-text, red);
    border-top: 2px solid var(--dx-color-primary, red);
    font-size: 1.2vh;
    gap: 1vh;
}

.xs-footer-link {
    cursor: pointer;
    color: var(--dx-color-primary, red);
    font-weight: 700;
    user-select: none;
    margin-right: 1vw;
}

.xs-footer-copyright {
    color: var(--dx-color-text, red);
    font-weight: 700;
    user-select: none;
    text-align: right;
    width: 100%;
}

@media (min-width: 600px) {
    .xs-footer {
        flex-wrap: nowrap;
        height: 5vh;
    }

    .xs-footer-copyright {
        text-align: right;
        width: auto;
    }
}

.xs-primary-color {
    color: var(--dx-color-primary, red);
}

.xs-product-logo {
    float: left;
    height: auto;
    width: 2vw;
    min-width: 30px;
    margin-right: 1vw;
}

    .xs-product-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.xs-product-logo-md {
    float: left;
    height: auto;
    width: 3vw;
    min-width: 40px;
    margin-right: 1vw;
}

    .xs-product-logo-md img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

#productList .dx-item-content {
    border-bottom: 1px solid var(--dx-color-primary, red);
}

.xs-features-list {
    list-style-type: disc;
    padding-left: 20px;    
    line-height: 1.6;
}

#send {
    min-width: 20vh;
}

.info-container {
    width: 100%;
}

.info-box {
/*    font-family: Arial, sans-serif;*/
    /*max-width: 70vw;
    margin: 20px auto;*/
}

.info-title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.info-paragraph {
    margin-bottom: 15px;
}
