.hubspot-chat-fallback {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.hubspot-chat-fallback .chat-icon {
    width: 60px;
    height: 60px;
    background-color: #0b1b2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 4px, rgba(0, 0, 0, 0.2) 0 2px 12px;
    transition: all 0.3s ease;
}

.hubspot-chat-fallback .chat-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hubspot-chat-fallback .chat-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.hubspot-chat-fallback .chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.hubspot-chat-fallback.popup-open .chat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hubspot-chat-fallback .popup-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.hubspot-chat-fallback .close-popup {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.hubspot-chat-fallback .popup-content {
    padding-bottom: 5px;
}

.hubspot-chat-fallback .popup-message {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.hubspot-chat-fallback .popup-buttons {
    display: flex;
    justify-content: space-between;
}

.hubspot-chat-fallback .manage-cookies-button,
.hubspot-chat-fallback .dismiss-button {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hubspot-chat-fallback .manage-cookies-button {
    background-color: #ff7a59;
    color: white;
    border: none;
}

.hubspot-chat-fallback .manage-cookies-button:hover {
    background-color: #f86a46;
}

.hubspot-chat-fallback .dismiss-button {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.hubspot-chat-fallback .dismiss-button:hover {
    background-color: #f5f5f5;
}

@media (max-width: 480px) {
    .hubspot-chat-fallback .chat-popup {
        width: 250px;
        left: -10px;
    }
}