@media (min-width: 660px) {
    .conversation-log {
        min-height: 400px;
        max-height: 400px;
    }
}

.floating-buttons {
    position: fixed;
    bottom: 0px;
    /* Distance from bottom */
    left: 0%;
    /* Centering buttons by setting equal left and right margins */
    right: 0%;
    display: flex;
    flex-direction: column;
    /* Stack buttons vertically */
    gap: 10px;
    /* Space between buttons */
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border: solid 1px #ccc;
    border-radius: 10px;
    /* Rounded corners */
    padding: 10px;
    /* Padding around buttons */
    background: #fff;
    text-align: center;
    z-index: 100;
}

.floating-buttons button {
    padding: 10px 20px;
    /* Button padding */
    color: white;
    /* Text color */
    border: none;
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    width: 100%;
    /* Make buttons fill the container */
}

.floating-buttons a#button-message {
    background-color: #91ca41;
    /* Green */
    color: white;
    /* Adjust text color as needed */
    width: 90%;
    max-width: 600px;
    margin: auto;
}

.floating-buttons a#button-call {
    width: 90%;
    max-width: 600px;
    margin: auto;
}

/* Ensure the button stays green even after being clicked (visited) */
.floating-buttons a#button-message:link,
.floating-buttons a#button-message:visited,
.floating-buttons a#button-message:hover,
.floating-buttons a#button-message:active,
.floating-buttons a#button-message:focus {
    background-color: #91ca41;
    /* Green */
    color: white;
    /* Keep text color consistent */
}

:root {
    --ts-green: #91ca41;
}

.text-description {
    display: inline-block;
    max-width: 90%;
    text-align: justify;
    text-justify: inter-word;
}

.green-check {
    color: var(--ts-green);
    font-size: 18px;
}