#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 4200;
    background-color: #1990CF99; /* 60% opacity */
    padding: 10px;
    box-sizing: border-box;
    color: white;
}

.footer_items_container {
    display: flex;
    justify-content: space-around;  /* Ensures three items are evenly spaced in one row */
    align-items: center;
    flex-wrap: nowrap;  /* Keep items in one row */
}

.footer_bar_item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;  /* Space from the bottom */
}

/* Grouping image and text vertically centered with a 5px gap */
.footer_bar_item_label {
    display: flex;
    align-items: center;
    gap: 5px;  /* 5px space between image and text */
    cursor: pointer;
}

/* Text styling */
.footer_bar_item_text {
    font-family: 'roboto';
    color: white;
    font-size: 12px;
}

/* Image styling with conflicting margins removed */
.footer_bar_items_img {
    margin: 0;
    height: 15px;
}

/* Media query for mobile devices to adjust text size */
@media only screen and (max-width: 600px) {
    .footer_bar_item_text {
        font-size: 10px;
    }
}


