.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.info-group {
    display: flex;
    flex-direction: column;
    font-size: 18pt;
    align-items: center;
    gap: 5px;

}

.info-label-text {
    padding-left: 20px;
}

@media (max-width: 700px) {
    .info-label-text {
        display: none;
    }
}

.app-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
}

.separator {
    /* position: absolute; */
    width: 80%; /* Adjust the width of the line */
    height: 2px; /* Adjust the height of the line */
    background-color: #5f5d5e; /* Choose the color of the line */
    border-radius: 1px; /* Set half of the height to create rounded ends */
    margin: auto;
    margin-top: 20px;
}