/* CV Chatbot widget styles (extracted from index.html) */

/* Hover effect for open button */
#cv-chatbot-open-btn:hover {
  background: #0056d6 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,105,255,0.4) !important;
}

#cv-chatbot-close-btn:hover {
  background: rgba(255,255,255,0.2) !important;
}

/* Mobile responsive */
@media (max-width: 600px) {
  #cv-chatbot-wrapper {
    width: calc(100vw - 24px) !important;
    height: calc(100vh - 100px) !important;
    max-width: none !important;
    border-radius: 12px !important;
  }
  
  #cv-chatbot-container {
    right: 12px !important;
    bottom: 12px !important;
  }
  
  #cv-chatbot-open-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

/* Basic structural safety */
#cv-chatbot-container { z-index: 9999; }
#cv-chatbot-wrapper { box-sizing: border-box; }

/* Header and control styles extracted from index.html */
.cv-chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0D233A;
  color: white;
  padding: 16px;
}

.cv-chatbot-open-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #0D233A;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,105,255,0.3);
  transition: all 0.3s ease;
}

.cv-chatbot-open-btn:hover { background: #0056d6; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,105,255,0.4); }

.cv-chatbot-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cv-chatbot-close-btn:hover { background: rgba(255,255,255,0.2); }
