.floating-button-container {
    position: fixed;
    z-index: 9999;
    bottom: 30px;
}

.floating-button-container.left {
    left: 30px;
}

.floating-button-container.right {
    right: 30px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background-color: #007bff;*/
    background-color:#ced4da!important;
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-button:hover {
    /*background-color: #0056b3;*/
    background-color:#ced4da!important;

    transform: scale(1.1);
}

.floating-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.popup-header {
    background: #007bff;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.popup-content {
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}