/* This is a new file for the scroll down button styles */
.scroll-down-button {
    position: fixed;
    bottom: 80px; /* Adjust based on your chat input bar height */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 1001; /* Above messages, below modals */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: none; /* Hidden by default */
}

.scroll-down-button:hover {
    background-color: rgba(0, 100, 220, 0.9);
    transform: scale(1.1);
}
