
@font-face {
  font-family: 'MeQuran';
  src: url('fonts/me_quran.ttf');
}
@font-face {
  font-family: 'JameelNastaleeq';
  src: url('fonts/jameel_nastaleeq.ttf');
}
@font-face {
  font-family: 'TimesNewRoman';
  src: url('fonts/times_new_roman.ttf');
}

body {
  font-family: 'TimesNewRoman', serif;
}
.arabic {
  font-family: 'MeQuran', serif;
}
.urdu {
  font-family: 'JameelNastaleeq', serif;
}

body {
  font-family: 'Times New Roman', serif;
  background: #f7f7f7;
  margin: 0;
  padding-bottom: 80px;
}
.logo {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  background: #10a37f;
  color: white;
}
.chat-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px;
}
.message {
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  white-space: pre-line;
}
.user {
  background-color: #daf1fc;
  text-align: right;
}
.bot {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.input-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  padding: 10px;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}
.input-bar input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}
.input-bar button {
  padding: 10px 20px;
  background-color: #10a37f;
  color: white;
  border: none;
  cursor: pointer;
}