:root {
    --chat-bg: #EAEAEA;
    --chat-border: #D9D9D9;
    --chat-color: #151515;
}

.agent-chat .chat-box {
    max-height: 126px;
    overflow-y: auto;
}

.agent-chat .chat-input-wrapper {
    height: 44px;
}

.agent-chat .chat-input, .agent-chat i {
    color: var(--chat-color);
}

.agent-chat i {
    font-size: 18px;
}

.agent-chat .chat-input {
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(28.79px);
    --webkit-backdrop-filter: blur(28.79px); 
    border: 1px solid var(--chat-border);
    padding-inline-end: 60px;
}

.agent-chat .chat-input:focus, .agent-chat .chat-input:focus-visible {
    border: 1px solid var(--chat-border);
    outline: none;
}

.agent-chat .add-question {
    background-color: var(--add-bg);
    border: 1px solid var(--add-bg);
    color: var(--add-color);
    width: 30px;
    height: 30px;
}

.agent-chat .send-action .send-icon {
    cursor: pointer;
}

.agent-chat i.lock-icon {
    font-size: 0.8rem;
    margin-bottom: -2px;
    margin-inline-end: -2px;
}

.agent-chat .ti-microphone {
    cursor: pointer;
}

.agent-chat .ti-paperclip {
    cursor: pointer;
}

.license-warning-message {
    animation: fadeInUp 0.3s ease-out;
    font-size: 0.9rem;
    font-weight: 500;
}

.license-warning-message i {
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .agent-chat .chat-input-wrapper button:disabled {
    position: relative;
    cursor: not-allowed;
}

.agent-chat .chat-input-wrapper button:disabled:hover i {
    opacity: 0.3;
}

.agent-chat .chat-input-wrapper button:disabled:hover .ti-lock {
    display: block !important;
}

.agent-chat .chat-input-wrapper button:disabled .ti-lock {
    display: none;
} */