/* Floating Upjau Rewards Button Styles */
.floating-upjau-rewards-btn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #004d25;
    /* Green color matching theme */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    /* Ensure it's on top */
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}

.floating-upjau-rewards-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.floating-upjau-rewards-btn:hover {
    background-color: #007337;
    /* Lighter green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-upjau-rewards-btn {
        bottom: 50px;
        right: 15px;
        padding: 10px 20px;
        font-size: 13px;
    }
}