.bubble-container.expanded {
    display: flex;
    flex-direction: row;  /* Ensure elements are horizontal */
    align-items: center;  /* Vertically center the items */
    justify-content: space-between; /* Pushes children elements to the edges */
}

.bubble-container.expanded > .auth-buttons {
    display: flex;  /* Display the buttons */
    gap: 15px;       /* Spacing between login and register buttons */
    opacity: 1;     /* Make it visible */
    visibility: visible;  /* Make it interactive */
    transform: scale(1);  /* Expand to full size for only the .auth-buttons */
}

.bubble-container {
    display: flex;
    align-items: center;  /* Vertically center the items */
    height: 8%;
}

.auth-buttons {
    display: none;  /* Hidden by default */
    padding: 20px
}


.login-btn, .register-btn, .signout-btn, .settings-btn {
    background-color: #FF4D4D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discord-btn {
    background-color: #FF4D4D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discord-btn a {
    color: white;
    text-decoration: none; /* This line removes the underline */
}

.login-btn:hover, .register-btn:hover, .signout-btn:hover, .settings-btn:hover, .discord-btn:hover {
    background-color: #FF6E6E;
}


.square {
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a shadow */
    border-radius: 10px; /* Rounded edges */
    background-color: #FF4D4D;
}

.square:hover {
    background-color: #727272;
    scale: 0.95;
}


/* Menu Content Card */
.menu-content {
    display: none; /* Initially hidden */
    width: 100%;
    flex-grow: 1;
    background-color: white;
    margin-top: 20px;
}

.vertical-menu {
    z-index: 2;
    background-color: #16171aaf;
    width: 60px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-extra-wrapper {
    display: flex;
    margin-left: 10px;
    flex-direction: row;
    align-items: stretch; /* If you want them to be of equal height */
    height: 65vh;
}

.extra-container {
    display: none;
    overflow-y: scroll;
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a shadow */
    flex-grow: 1;  /* This will make sure it takes the remaining space */
    margin: 10px 10px 10px 0; /* Top, right, bottom, left */
}