﻿.moduleHeightFull {
    height : 100% !important;
}

#chooseModulePage {
    width: 100vw;
    height: 100vh;
}

@media (min-width:768px) {
    #chooseModuleAbove {
        height: 15vh;
    }

    #chooseModuleBelow {
        height: 30vh;
    }

    #chooseModuleMidRow {
        height: 55vh;
    }
}

@media (max-width:767px) {
    #chooseModuleAbove {
        height: 5vh;
    }

    #chooseModuleBelow {
        height: 10vh;
    }

    #chooseModuleMidRow {
        height: 85vh;
    }
}

#chooseModuleMainContent {
    border: 1px solid #BFBFBF;
    border-radius: 5px;
    background-color: #023056;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
    overflow: hidden;
    height: 100%;
}

#chooseModuleMainContentRow {
    height: 100%;
}

#aboveModuleTileRow {
    height: 20%;
}

#moduleTileRow {
    height: 60%;
}

#moduleTileCol {
    height: 100%;
}

#belowModuleTileRow {
    height: 20%;
}

/* General container styling */
.menu-container {
    height: 100%;
    gap: 1em;
    background-color: #023056;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Individual menu items */
.menu-item {
    background-color: #FFFFFF;
    color: #023056;
    text-align: center;
    width: 30%;
    height: 50%;
    font-weight: bold;
    border-radius: 1em;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

/* Hover effect */
.menu-item:hover {
    color: white;
    background-color: #0056b3;
    transform: scale(1.05);
}

.flex-break {
    flex-basis: 100%;
    width: 0;
}