/*================================*/
/*   INDEX.CSS                    */
/*   KGARMIRE, 2025-02-26         */
/*================================*/

:root {
    /*GLOBAL CSS VARIABLES*/
    --header-height:55px
}

html, body{
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

body{
    overflow:hidden;
}

main{
    height: calc(100% - var(--header-height));
    width:100%;
}

#browser-select{
    width:256px;
    margin:auto 12px auto auto;
}

#scroll-cont{
    display: flex;
    flex-direction: column;
    gap: 12px;

    justify-content: center;
    align-items: center;
    padding: 32px 16px;
}

section{
    --gap : 24px;
    margin-top:var(--gap);
    border-top:1px solid var(--dcny-blue-dark);
    padding-top:var(--gap);
}

#mobile-title{
    font-weight: normal;
    font-size: 1.8rem;
}

#content{
    width:100%;
    max-width: 1000px;
}

#content li{
    padding-bottom:4px;
}

#content .button-row{
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

#content .button-row button{
    padding:8px;
    min-width: 128px;
}

.material-icons.inline{
    vertical-align: middle;
}

#content h3{
    padding-top:12px;
}

#content .ie-logo{
    /* Even the logo needs special treatment... */
    height:auto;
    width:32px;
}

#content .warning{
    margin: 24px;
    padding: 12px;
    background: var(--dcny-gold);
    color: var(--dcny-blue-dark);
    border-radius: 4px;
}


.mobile-only{display: none !important;}

/* - MOBILE: LANDSCAPE; (less than 768px) - */
@media (max-width: 768px) {
    .desktop-only{display: none !important;}
    .mobile-only{display: block !important;}
}