
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.main-content > div {
    width: 100%;
}

.main-content > div:nth-child(1) {
    height: 10%;
}

.main-content > div:nth-child(2) {
    height: 50%;
}

.main-content > div:nth-child(3) {
    height: 10%;
}

.main-content > div:nth-child(4) {
    height: 30%;
}

 
.menu-section{
    margin-left: auto;
    margin-right: auto;    
}

.menu-button {
    display: inline;
    float: left;
    width: 30%;
    font-size: 16px;
    cursor: pointer;
}



.refresh-button {
    display: inline;
    float: left;
    width: 10%;
}

.status-text {
    display: inline;
    float: left;
    width: 60%;
    height: 50px;
  line-height: 50px
}


.card-skins-button {
    display: inline;
    float: left;
    width: 10%;
}

.info-button {
    display: inline;
    float: left;
    width: 10%;
}




/* Media queries for responsive design */

@media screen and (max-width: 768px) {


    .main-content > div:nth-child(1) {
        height: 20%;
    }

    .main-content > div:nth-child(2) {
        height: 50%;
        margin-top: -20%
    }

    .main-content > div:nth-child(3) {
        height: 10%;
    }

    .main-content > div:nth-child(4) {
        height: 30%;
    }

    
    .menu-section{
        margin-left: auto;
        margin-right: auto;    
    }

    .menu-button {
        display: inline;
        float: left;
        width: 100%;
        font-size: 16px;
        cursor: pointer;
    }

    .refresh-button {
        display: inline;
        float: left;
        width: 10%;
    }

    .status-text {
        display: inline;
        float: left;
        width: 60%;
        height: 50px;
    line-height: 50px
    }


    .card-skins-button {
        display: inline;
        float: left;
        width: 10%;
    }

    .info-button {
        display: inline;
        float: left;
        width: 10%;
    }



}