/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #007bff;
    color: white;
    border: 3px solid yellow;
    border-radius: 50%; /* Makes the button circular */
    width: 50px; /* Set the width */
    height: 50px; /* Set the height */
    font-size: 23px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    justify-content: center;
    align-items: center;
    display: flex;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}
