body {
    margin: 0 !important;
    padding: 0;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
/* 
.hidden {
    display: none;
} */

.custom-button {
    position: fixed;
    bottom: 5px;
    left: 5px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.8), rgba(254, 180, 123, 0.8));
    /* Transparent gradient background */
    color: #fff;
    /* White text color */
    border: none;
    border-radius: 5px;
    /* Rounder corners */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    /* Remove default focus outline */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    background-size: 400% auto;
    animation: shimmer 2s infinite linear;
    /* display: none; */
    /* Apply shimmering animation */
}

#closeIcon {
    font-size: 14px;
    /* Kích thước của biểu tượng "x" */
    color: green;
    /* Màu của biểu tượng "x" */
    position: absolute;
    top: -10px;
    /* Dịch chuyển lên trên một chút */
    right: -5px;
    /* Dịch chuyển sang phải một chút */
}

.custom-button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    /* Slightly larger shadow on hover */
}

.custom-button:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Smaller shadow on click */
}
