#fomo {
    position: fixed;
    bottom: calc(13.5vw + 20px); /* Reduced spacing to create better visual balance */
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.44);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    animation: slideUp 0.5s ease-out;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

#fomo.hidden {
    transform: translateY(100px);
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#fomo .wrapper {
    flex: 1;
}

#fomo .buyer {
    margin-bottom: 5px;
}

#fomo .user_name {
    font-weight: bold;
    color: #045282;
    font-size: 16px;
}

#fomo .location {
    color: #045282;
    font-size: 14px;
}

#fomo .Boked .loanAmount {
    color: #0077ff;
    font-weight: bold;
}

#fomo .time {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

#fomo .time .number {
    font-weight: bold;
}

#fomo .time .type {
    color: #666;
}

#fomo .time span:last-child {
    margin-left: 10px;
    color: #00b5ef;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #fomo {
        bottom: calc(15vw + 20px); /* Reduced spacing for better mobile layout */
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 428px) {
    #fomo {
        bottom: calc(18vw + 20px); /* Adjusted for medium-sized screens */
    }
}

@media (max-width: 375px) {
    #fomo {
        bottom: calc(20vw + 20px); /* Adjusted for smaller screens */
    }
}

@media (max-width: 320px) {
    #fomo {
        bottom: calc(22vw + 20px); /* Adjusted for very small screens */
    }
} 