.user-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.user-menu .dropdown {
    margin-left: 14px !important;
    display: block !important;
}

.user-email {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.user-balance {
    font-size: 12px;
    color: #ddd;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 10px;
}

.logout-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #c0392b;
}

.floating-btn {
    position: fixed; /* Keeps it in place during scroll */
    bottom: 25px;    /* Distance from bottom */
    right: 25px;     /* Distance from right */
    z-index: 999;    /* Ensure it's above most other content */
    background-color: #ede9e9; /* Use your theme color */
    color: #ff5500;
    border: 1px solid #21242e;
    border-radius: 3px; /* Make it pill-shaped or circular */
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s ease-out;
    display: flex; /* Align icon and text */
    align-items: center;
     /* Space between icon and text */
}

.floating-btn:hover {
    background-color: #ffffff; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
    border: 1px solid #ff5500;
}

.floating-btn i {
    font-size: 1.1em; /* Adjust icon size if needed */
}