.fake-chatbot {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: -15rem;
}

.fake-chatbot__inner {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    */
}

.fake-chatbot__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fake-chatbot__icon {
    font-size: 1.75rem;
    color: #fff;
}

.fake-chatbot__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.fake-chatbot__input-wrapper {
    position: relative;
    width: 100%;
}

input[type=text].fake-chatbot__input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 3rem;
    background-color: #fff;
    color: #6c757d;
    cursor: default;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fake-chatbot__input:focus {
    outline: none;
    border-color: var(--color-primary, #0d6efd);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.fake-chatbot__search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--color-primary, #0d6efd);
    pointer-events: none;
}

/* Typing animation for placeholder */
.fake-chatbot__input::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* Blinking cursor effect */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.fake-chatbot__input.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

@media (min-width: 992px){
    .fake-chatbot {
        max-width: 80%;
    }
    .fake-chatbot__title {
        font-size: 1.2rem;
    }
    input[type=text].fake-chatbot__input {
        font-size: 1.2rem;
    }
}
@media (min-width: 1200px){
    .fake-chatbot__title {
        font-size: 1.2rem;
    }
    input[type=text].fake-chatbot__input {
        font-size: 1.3rem;
    }
}
@media (min-width: 1400px){
    .fake-chatbot__title {
        font-size: 2rem;
    }
    input[type=text].fake-chatbot__input {
        font-size: 1.8rem;
    }
}
