#scrollToTopBtn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #fcae18;
    color: white;
    font-weight: bold;
    /* border: none; */
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none; /* Ẩn nút lúc đầu */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #94b83d;
}

/* Thêm chữ khi hover */
#scrollToTopBtn::after {
    content: "Đi lên trên"; /* Chữ sẽ hiển thị khi hover */
    position: absolute;
    bottom: 60px; /* Đặt vị trí của chữ */
    right: 50%;
    transform: translateX(50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap; /* Giữ chữ không bị xuống dòng */
}

#scrollToTopBtn:hover::after {
    opacity: 1;
    visibility: visible;
}
