.grecaptcha-badge {
    display: none;
}

    /* Chatbot Popup Stil */
.chatbot-popup {
    position:fixed;
    bottom: 60px;
    right: 20px;
    width: 370px;
    max-width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    height: 500px;
    overflow: hidden;
    z-index: 1000;
}

.chatbot-header {
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #FF7F32;
}
.chatbot-logo {
    width: 85px;
    height: 85px;
    margin-right: 20px;
    border-radius: 60%;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.amblem {
    width: 95px;
    height: 85px;
    border-radius: 50%;
    position: absolute;
    top: -75px;
    left: -10px;

    background-image: url('/mnt/data/portakal_bot.png');
    background-size: cover;
    background-position: center;
}

.chatbot-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FF7F32;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.chatbot-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #F9FAFB;
}

.chatbot-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chatbot-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #FF7F32;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.chatbot-send-btn {
    background-color: #FF7F32;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
}

.chatbot-send-btn:hover {
    background-color: #FF5A00;
}

/* Chatbot Açma Butonu */
.chatbot-open-btn {
    background: linear-gradient(45deg, #ff7f27, #2ed47a); /* Turuncu ve yeşil geçişi */

    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #FF7F32;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;

}
.button-text {
    font-size: 18px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Yazıya gölge ekler */
}

.chatbot-open-btn:hover {
    background-color: #FF5A00;
}