﻿.round-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.round-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #6c9bcf;
    color: #fff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease;
}

    .round-button:hover {
        background-color: #0056b3;
    }

    .round-button i {
        font-size: 20px;
        line-height: inherit;
    }

.button-label {
    margin-top: 5px;
    color: #6c9bcf;
    text-align: center;
}
