/**
Theme Name: Accio
Author: Rakesh Prabhakar
Author URI: https://www.accioenterprises.com
Description: Astra Child
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: accio
Template: astra
*/
/* Gemini Chatbox */
/* Gemini Chatbox */
#gemini-chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
}
.gemini-chatbox {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 450px;
  max-height: 500px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 9999;
  flex-direction: column;
  font-family: Arial, sans-serif;
}
.gemini-chatbox.open { display: flex; }
.chat-header {
  background: #4EAC44;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}
.chat-message {
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.4;
}
.chat-message.bot {
  background: #f1f1f1;
  align-self: flex-start;
}
.chat-message.user {
  background: #4EAC44;
  color: white;
  align-self: flex-end;
  margin-left: auto;
}
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}
.chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
}
.chat-input button {
  background: #4EAC44;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
/* === Mobile Responsiveness === */
@media (max-width: 767px) {
  .gemini-chatbox {
    width: 95%;
    right: 2.5%;
    left: 2.5%;
    bottom: 15px;
    max-height: 85vh;
    border-radius: 12px;
  }

  .gemini-chatbox .chat-header {
    font-size: 16px;
    padding: 10px 14px;
  }

  .gemini-chatbox .chat-input input {
    font-size: 14px;
    padding: 10px;
  }

  .gemini-chatbox .chat-input button {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* Smallest devices (e.g., 320px wide) */
@media (max-width: 400px) {
  .gemini-chatbox {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
    bottom: 0;
    height: 100vh;
    max-height: none;
  }

  #gemini-chat-overlay {
    background: rgba(0, 0, 0, 0.65);
  }
}

.apa-number{
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}