/* Base Styles */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  background-color: #121212;
  color: #e0e0e0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

/* Button Focus Styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
}

/* Chat Window */
.chat-window {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: #e0e0e0;
  padding: 10px;
  max-height: 500px;
  overflow-y: auto;
}

/* Chat Messages */
.chat-message.user {
  background-color: #333;
  text-align: right;
  color: #e0e0e0;
}

.chat-message.assistant {
  background-color: #2c2c2c;
  color: #e0e0e0;
}

/* Chat Input */
.chat-input textarea {
  background-color: #1e1e1e;
  border: 1px solid #555;
  color: #e0e0e0;
  width: 100%;
  padding: 10px;
}

.chat-input button {
  background-color: #3a3a3a;
  color: #ffffff;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
}

.chat-input button:hover {
  background-color: #4a4a4a;
}

/* Modal Styles */
.modal-content {
  background-color: #2c2c2c;
  color: #e0e0e0;
}

.modal-header, .modal-footer {
  border-color: #444;
}

.modal-body {
  background-color: #1e1e1e;
}

/* Form Control */
.form-control {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid #555;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px; /* Adjust margin as needed */
}

.action-buttons form {
  margin: 0;
}

.blur-background {
  filter: blur(5px);
  pointer-events: none; /* Disable interaction with blurred elements */
  opacity: 0.6;
}
