/*Header*/
.head_afterlogin_custom .btn_dropup_lang button {
    padding-left: 10px;
    font-size: 13px;
}

.btn_dropup_lang button img {
    margin-right: 6px;
}

/*Download*/
.download-tab img {
    width: 170px;
    height: 170px;
    object-fit: cover;
}

/*Inbox*/
.inbox-reply-textarea {
    color: black;
}

table.dataTable tbody .odd {
    background-color: #ffffff42;
}

table.dataTable tbody .even {
    background: #ffffff2b;
}

/* FLOATING CUSTOMER SERVICE CHAT ICON */
.floating-chat-icon {
    position: fixed;
    bottom: 9%;
    right: 30px;
    z-index: 9999;
}

.chat-icon {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #f9e481 0%, #d7a341 100%);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 50px;
    height: 50px;
    justify-content: center;
}

    .chat-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    .chat-icon i {
        font-size: 20px;
        color: #333;
    }

.chat-label {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/*Reward*/
#redemption_list .prize-credit img {
    width: 200px;
    height: 95px;
    object-fit: contain;
}

@media (min-width: 769px) and (max-width: 1920px) {
    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        position: relative;
    }
}

@media (max-width: 768px) {
    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
    }
}

    /* WhatsApp Floating Icon */
    .whatsapp-floating {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 999;
    }

        .whatsapp-floating .whatsapp-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 55px;
            height: 55px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

            .whatsapp-floating .whatsapp-btn:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
            }

            .whatsapp-floating .whatsapp-btn i {
                font-size: 40px;
                color: #ffffff;
            }

    /* Animation for attention */
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
    }

    .whatsapp-floating .whatsapp-btn {
        animation: pulse 2s infinite;
    }

    /* Mobile responsiveness */
    @media (max-width: 767px) {
        .whatsapp-floating {
            bottom: 75px;
            right: 15px;
        }

            .whatsapp-floating .whatsapp-btn {
                width: 50px;
                height: 50px;
            }

                .whatsapp-floating .whatsapp-btn i {
                    font-size: 26px;
                }
    }