html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Custom RTL Overrides */
.text-right {
    text-align: right !important;
}

.form-group label {
    float: right;
    margin-left: 10px;
}

.input-group-prepend {
    margin-left: -1px;
    margin-right: 0;
}

.custom-control-label::before,
.custom-control-label::after {
    right: -1.5rem;
    left: auto;
}

.custom-switch .custom-control-label::after {
    right: -2.25rem;
}

/* Arabic Font Support */
/*@font-face {
    font-family: 'Tajawal';
    src: url('/fonts/Tajawal-Regular.ttf') format('truetype');
}*/

body {
    font-family: 'Tahoma', Arial, sans-serif;
}

.navbar-nav {
    margin-right: auto !important;
}

.form-control {
    text-align: right;
}
/* Add this to your site.css or a custom CSS file */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

#chatHistory {
    direction: ltr; /* Ensure left-to-right alignment for chat history */
}

#chatHistory strong {
    font-weight: bold;
}

#chatHistory small {
    color: #666;
    font-size: 0.9em;
}