.floating-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #143E5C;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 9999;
}

.floating-chat-button:hover {
    background-color: #0D293D;
    transform: scale(1.05);
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.chat-box-header {
    background: #143E5C;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.chat-box-body {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
}

.chat-box-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-box-footer input {
    flex: 1;
    border: none;
    padding: 10px;
}

.chat-box-footer input:focus {
    outline: none;
}

.chat-box-footer button {
    background: #143E5C;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

iframe[src*="chat"], .n8n-chat-launcher {
    display: none !important;
}

