:root {
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-danger: #dc3545;
  --bs-warning: #ffc107;
  --bs-info: #0dcaf0;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-white: #ffffff;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  /* ... diğer Bootstrap renkleri ... */
  --bs-theme:var(--bs-danger);
}


 /* Destek Hattı Butonu */
 .chat-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--bs-theme);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: bouncezakkas 1.5s infinite;
  z-index: 99999999999;
}

@keyframes bouncezakkas {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Chat Kutusu */
.chat-box {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 550px;
  background: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 99999999999;
}

.chat-header {
  background: var(--bs-theme);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.chat-body {
  padding: 10px;
  height: auto;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.chat-input button {
  background: var(--bs-theme);
  color: white;
}

.chat-input button.disabled {
  background: var(--bs-secondary);
}

.message {
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 5px;
  max-width: 80%;
  margin-bottom:25px;
}

.user-message {
  background: var(--bs-theme);
  color: white;
  align-self: flex-end;
}

.bot-message {
  background: #f1f1f1;
  color: black;
  align-self: flex-start;
}

.typing-indicator {
  display: none;
  align-self: flex-start;
  font-style: italic;
  color: gray;
}

.panel-chat-body {
  padding: 10px;
  height: auto;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.user-message-date
{
  align-self: flex-end;
    font-size: 14px;
    font-style: italic;
}

.bg-color-white
{background-color:white;}

.bg-color-light-gray
{background-color:#ededed;}




/* Responsive CSS */

@media (max-width: 800px) {
  .chat-box {
    width: 80%;
  }
}