.cursor-pointer {
    cursor: pointer;
}
.btn-img-icon:hover {
    color: #fff;
    border: 2px solid #333e48;
    box-shadow: 0 4px 11px rgba(51, 62, 72, 0.35);
    transition: background-color 0.3s ease;
}
/* Loader container inside the button */
.dots-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Each dot */
.dots-loader span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 0.6s infinite ease-in-out;
}

/* Delay for each dot to create wave effect */
.dots-loader span:nth-child(1) {
    animation-delay: 0s;
}
.dots-loader span:nth-child(2) {
    animation-delay: 0.2s;
}
.dots-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Bounce animation */
@keyframes bounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
}
