.chatbot-icon-button {
    /* Shape and Size */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes it a perfect circle */
    
    /* Appearance */
    background-color: #0073aa; /* WordPress primary blue */
    color: white;
    text-align: center;
    line-height: 60px; /* Centers the icon vertically if using text/emoji */
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    
    /* Positioning (Optional: makes it a floating button) */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999; /* Ensure it stays above other content */
}

.chatbot-icon-button:hover {
    background-color: #005177; /* Darker shade on hover */
}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto; /* original 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 100%; /* original 80% Could be more or less, depending on screen size */
  max-width: 100%; /* original 50% */
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#open-chatbot-modal {
    margin: 5% 10%;
}

@media (min-width: 600px) {
  .modal-content {
  	 width: 80%;
  }
}