body {
  margin: 0;
  height: 100%;
}
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}
.content {
  flex: 1; 
  overflow-y: auto; /* In case the content exceeds the viewport */

}

.footer-container {
  background-color: #436095;
  margin: 0;
 
  width: 100%;
 
}
 #hero {

  background: rgba(209,213,228,1) ; 
 }
 .hero-feature-container {
 
  background-color: #436095;
  color:#ffffff;
  border-radius: 4px;
  width: 30%;
  padding: 16px;
  font-weight: bold;
 }
/* FormDemo.css */


.form-demo .card form {
  margin-top: 2rem;
}
.form-demo .card .field {
  margin-bottom: 1.5rem;
}
.form-demo-container {
  width: 40%;
}

.p-button.p-button-xs {
  font-size: 0.6563rem;
  padding: 0.4922rem 0.8203rem;
}
.p-menubar-root-list {
  z-index: 1000;
}

.p-input-icon-left > .p-inputtext {
 width: 160px;
}


.p-toolbar {
  padding: 4px;
}
.form-new-project {
  width: 50%;
}
.p-radiobutton .p-radiobutton-box   {
  display: none ;
}
.p-checkbox .p-checkbox-box {
  display: none ;
}

.header-container {
  background-color: #436095;
  width: 100%;
  padding: 24px;
}
.p-menubar-root-list, .p-submenu-list {
  min-width: 16rem;
  left: auto;
  right: 0;
}
.my-projects-left-container{
  width: 30%;
}
/*Chatbot*/
.chatbot-container {
  background-color:  #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
 width: auto;
  height: 75vh;

}
.mobile-view {
  position: fixed;
    bottom: 8px; /* Distance from bottom */
  
    z-index: 9999; /* Ensures it stays on top */
    width: 100%;
    backdrop-filter: blur(10px);
    opacity: 0.9;
}

.hero-card {
  width: 70%;  
  margin: 2em auto 
}
.robot-image-container {
  width: 100%;
}
.robot-image {
  width: 100%;
  border-radius: 12px;
}


.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}
    
@media screen and (max-width: 960px) {
 
  .form-demo-container {
    width: 50%;
  }
  .form-new-project {
    width: 60%;
  }
  .logo-img {
    height: 24px;
  }
  .hero-card {
    width: 70%;  
  }
  .reset-card { 
    width: 25rem;
    margin: 2em;
  }
}
@media screen and (max-width: 768px) {

  .form-demo-container {
    width: 100%;
  }
  .my-projects-left-container.card {
    width: 100%;
  }
  .my-projects-container {
    flex-direction: column;
    
  }
  .form-new-project {
    width: 100%;
  }
 
  .logo-img {
    height: 18px;
  }
  .hero-card {
    width: 100%;  
    margin: 1em auto 
  }
  .hero-feature-container {
    font-size: 14px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .header-container {
    padding: 12px;
  }
  .header-container > img {
    height: 48px;
  }
}



