body {
    background-color: var(--bs-light);
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a7df7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.dialog-box {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;

    max-width: 90%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s;

    width: 500px;
    height: 700px;
    max-height: calc(100% - 105px);
    max-width: calc(100% - 20px);
    overflow: hidden;
}
.dialog-box > iframe {
    border: none;
    height: 100%;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .dialog-box {
        width: 90%;
        height: 80%;
    }
}