@import url("custom.css");
/* Typography */
@font-face {
    font-family: "DMSans semibold";
    src: url(../fonts/DMSans-SemiBold.ttf);
}

@font-face {
    font-family: "Inter regular";
    src: url(../fonts/Inter_24pt-Regular.ttf);
}

@font-face {
    font-family: "Inter medium";
    src: url(../fonts/Inter_18pt-Medium.ttf);
}

@font-face {
    font-family: "DMSans Bold";
    src: url(../fonts/DMSans-Bold.ttf);
}


html,body{
  height: 100%;
  font-family: "Inter regular";
}

body {
  background: url("../image/bg.png") no-repeat center center fixed;
}

.navbar-custom {
  border-bottom:1px solid #c0c0c3;
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  height: 50px;
}

.brand-text {
  line-height: 1.2;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.status-indicator {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
}


.main-content {
  margin-top: 20px;
}

.main-title {
  font-family: "DMSans semibold";
  color: #16a34a;
  font-size: 42px;
}
.subtitle {
  font-family: "Inter regular";
  color: #666666;
  margin-top: 8px;
  margin-bottom: 180px;
}

.suggestions .btn,.logout-btn {
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border: none;
  color: #2a2a2a;
  font-weight: 500;
  transition: all 0.2s ease;
}
.suggestions .btn:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.query-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.query-box input {
  border-radius: 12px 0 0 12px;
  border: 1px solid #ddd;
  padding: 12px;
  width: 300px;
}

.query-box button,.logout-btn:hover {
  padding: 12px 25px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.query-box button:hover {
  background: linear-gradient(90deg, #15803d, #16a34a);
}
.suggestions .question{
  background: #bbf7d0;
}
#chatContainer {
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

#chatContainer::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#chatContainer::-webkit-scrollbar-thumb {
    background: transparent;
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.5rem;
  }
  .query-box input {
    width: 200px;
  }
  .main-content{
    margin-top: 10px;
  }
  .fs-6,.fs-5,p{
    zoom:90%;
  }
}
