#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8dc63f;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    z-index: 1050;
}

#notification-bubble {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

#speech-bubble {
    position: absolute;
    bottom: 10px;
    right: 70px;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    z-index: 2147483647;
    white-space: nowrap;
}

#whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 2147483647;
}

.whatsapp-header {
    background-color: #8dc63f;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.whatsapp-body {
    padding: 10px;
    background-color: #f0f0f0;
    height: 260px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-message {
    width: 100%;
}

.whatsapp-message-content {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.whatsapp-message-time {
    font-size: 0.8em;
    color: #888;
    text-align: right;
    width: 100%;
}

.whatsapp-footer {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 0 0 10px 10px;
}

.whatsapp-form-close-btn {
    cursor: pointer;
}

.hidden {
    display: none;
}

.whatsapp-field {
    display: flex;
    align-items: center;
    width: 100%;
}

.whatsapp-field button {
    background: none;
    border: none;
    color: #8dc63f;
    cursor: pointer;
}

.whatsapp-field .wp-emoji-input {
    font-size: 1.5em;
}

.whatsapp-field .whatsapp-input {
    flex-grow: 1;
    border: none;
    padding: 5px;
    margin: 0 10px;
    box-sizing: border-box;
}

.whatsapp-field .whatsapp-button-button {
    background: none;
    border: none;
    color: #8dc63f;
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 20px; /* Position from the bottom */
    left: 10px; /* Position from the left */
    background-color: #f1f4f8;
    color: #333;
    text-align: left;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px; /* Optional: Adds rounded corners */
    display: none; /* Initially hidden */
    opacity: 1; /* Fully opaque */
    z-index: 2147483647;
}

.cookie-notice p {
    margin: 0;
    padding: 0;
    display: inline-block; /* Aligns text and button on the same line */
    font-size: 14px; /* Smaller font size */
}

.cookie-notice button {
    background-color: #8dc63f;
    color: white;
    padding: 5px 10px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    border-radius: 3px; /* Optional: Adds rounded corners to the button */
}

.cookie-notice button:hover {
    background-color: #8dc63f;
}
  
.client-avatar {
    margin-right: -15px; /* Adjust this value to increase overlap */
    display: inline-block;
    position: relative;
    z-index: 1;
}

.client-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Makes the image round */
    border: 2px solid white; /* White border to distinguish overlapping images */
}

.client-avatar:last-child {
    margin-right: 0; /* Ensure the last image does not have a negative margin */
}

@media (max-width: 768px) {
    .client-avatar {
        margin-right: -15px; /* Adjust overlap for smaller screens */
    }
    .client-avatar img {
        width: 30px; /* Slightly smaller on mobile */
        height: 30px;
    }
}

.extra-bold {
    font-weight: 900; 
}

.accordion-button::after {
    position: absolute;
    right: 1rem; 
}
