.friend_metadata, .user_metadata {
    font-size: 10pt;
}

.friend_metadata_gpsoff, .user_metadata_gpsoff {
    color: darkred;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row; /* switch to side-by-side on wider screens */
    }
}

.info_box {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #D0E9BD;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    flex-shrink: 0;
}

.info_box_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #D0E9BD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_box_content {
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .info_box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info_box_content {
        align-items: center;
        text-align: center;
    }
}