.tooltip {
    visibility: hidden;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    position: absolute;
    bottom: 40px; /* Adjust as needed to position above the icon */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.money-user-info {
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 80px;
    padding-top: 40px;
    z-index: 1;
}

.money-container {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 10px;
    position: relative;
}

.money-value {
    text-align: left;
}

.money-icon:hover + .tooltip {
    visibility: visible;
    opacity: 1;
}

.money-icon {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    flex-shrink: 0; /* Prevent icon from resizing */
}

.welcomeUsername {
    color: #007bff;
}

#welcomeMessage {
    font-size: 1.2rem;
    text-align: left;
}

@media (max-width: 768px) {
    .header-left-logo {
        visibility: hidden;
        position: absolute;
    }
    .money-user-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 0;
        position: relative;
    }
}