.bMenu {
    position: fixed;
    left: 1px;
    right: 1px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 1px 20px;
    z-index: 10900;
    background-image: linear-gradient(0deg, rgb(0 0 0 / 90%) 25%, rgba(255, 255, 255, .75) 50%, rgba(255, 255, 255, .35) 75%, rgba(255, 255, 255, .01) 95%);
}
.bMenu >*:not(.bCmt) {
    width: 190px; /* Set the width to 190px */
    height: 60px;
    justify-content: center;
    background: #ff0101;
    color: #fff;
    border: dotted;
    border-color: #000;
}
.bMenu >* {
    text-align: center;
    line-height: 15px;
    font-size: 14px;
    font-weight: 900;
    position: relative;
    margin: 0 5px;
    border-radius: 10px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .25);
}
.bIc {
    display: flex;
    align-items: center;
}
label {
    cursor: default;
}
.bBt::before {
    content: "";
    position: absolute;
    top: -29px;
    left: 50%; /* Center the image */
    transform: translateX(-50%); /* Center the image */
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    z-index: 20000001;
    box-shadow: rgb(118 255 0) 0px 0px 22px 0px, rgb(209, 217, 230) 8px 4px 12px 0px;
    border: 1px solid rgb(0 0 0);
}
.bBt-txt a {
   color: #fff;
}
/* CSS pentru a centra butoanele pe desktop */
@media (min-width: 768px) {
    .bMenu {
        justify-content: center;
    }
    .bMenu >*:not(.bCmt) {
        width: 190px; /* Set the width to 190px */
        max-width: 190px;
    }
    .bMenu.hide-on-desktop {
        display: none;
    }
	.bBt::before{
		top: -29px;
	 }
}
.bMenu.single-button .bBt {
    margin: auto;
    flex: none;
}
/* Adaugă acest cod la finalul fișierului bmenu-styles.css */
/* Stiluri pentru pagina de setări din admin */
.wrap .description {
    font-style: italic;
    color: #666;
}

.bmenu-loading-message {
    font-family: Arial, sans-serif; /* Schimbă fontul */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Adaugă o umbră */
}

