
.menuFloatingBar {
    display: none;
    flex-direction: column !important;
    height: 50vh;
    width: 18vw;
    background-color: rgb(31, 31, 31);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* horizontal-offset vertical-offset blur-radius color */
    border-radius: 10px;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    margin-top: 7vh;
    margin-right: 1vw;
    padding: 1%;
}

.floater-button-container {
    margin-top: 10%;
    display: flex;
    height: 40%;
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.floater-button {
    display: flex;
    height: 40%;
    width: 95%;
    color: var(--primary-color-hover);
    font-weight: 700;
    font-size: 0.8rem;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--primary-dark-color);
    border-radius: 5px;
}

.floater-danger{
    background-color: rgb(255, 63, 63);
}

.floater-button:hover {
    background-color: var(--golden-solid);
    color: white;
}

.display-floating-name {
    color: white !important;
}

.acc-profile-photo-container {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 5vw;
    background-color: rgba(255, 0, 0, 0);
}


.profile-photo-top {
    aspect-ratio: 1/1;
    width: 5vw;
    height: 5vw;
    border-radius: 50%; /* Makes the frame circular */
    overflow: hidden; /* Hides the parts of the image outside the circular frame */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    background-color: #ff3e3e; /* Background color of the circular frame */
}

.profile-photo-top img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Maintain image aspect ratio and cover the circular frame */
}
