@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f7fa;
  color: #495057;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
p,
span {
  font-family: "Poppins", sans-serif;
}
.main-container{
  height: 100vh;
}
.content-container{
  height:  calc(100% - 80px);
}
/*header styles*/
.header {
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid #dbeafe;
  /* padding: 10px 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  z-index: 9;
}
.header .logo{
  height: 100%;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo img {
  width: 130px;
  height: auto;
  margin-left: 70px;
}
.icons {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}
.icons .notifications-icon,
.icons .user-icon {
  width: 50px;
  height: 50px;
  background-color: #e2e8f0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.notifications-icon img,
.user-icon img {
  width: 20px;
  height: 22px;
}
.container-fluid {
  padding: 0px !important;
}

/*sidebar styles*/
.sidebar {
  width: 360px;
  background-color: #ffffff;
  border-right: 1px solid #dbeafe;
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .nav-link {
  font-weight: 500;
  color: #6c757d;
  padding: 10px 0 10px 30px;
  border-radius: 8px;
  margin: 5px 0;
}
.sidebar li a{
  padding-left: 30px;
}
.nav-dashboard{
  color: #475569;
  display: flex;
  gap: 30px;
  align-items: center;
  text-decoration: none;
  height: 70px;
}

.my-bots {
  display: flex;                          /* Use flexbox to align children */
  justify-content: space-between;        /* Create space between child elements */
  align-items: center;                   /* Vertically center items */
  height: 70px;                          /* Set height for the nav item */
  text-decoration: none;                 /* Remove underline from links */
  padding: 0 20px;                       /* Optional padding for left/right */
}

.bots-info {
  display: flex;                         /* Keep the bots image and text in a row */
  align-items: center;                  /* Vertically center items */
}
.bots-info img {
  margin-right: 20px;               /* Add space between bots.png and text */
}

.add-icon {
  cursor: pointer;                      /* Show pointer on hover */
}

.nav-dashboard img {
  height: 20px;
  width: 20px;
}
.nav-dashboard span {
  font-size: 14px;
  font-weight: 500;
}
.my-bots-general {
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}
.bots-info img {
  height: 30px;
  width: 35px;
}
img.add-icon{
  height: 25px;
  width: 25px;
}
.my-bots span {
  font-size: 20px;
  font-weight: 600;
}
.bot img {
  width: 30px;
  height: 25px;
}

.settings {
  color: #475569;
  display: flex;
  gap: 30px;
  align-items: center;
  text-decoration: none;
  height: 70px;
}
.settings img {
  height: 20px;
  width: 20px;
}

.sidebar .become-pro {
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%);
  color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  margin:10px 30px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 70px;
}
.become-pro img {
  height: 25px;
  width: 25px;
}
.become-pro span {
  font-size: 14px;
  font-weight: 500;
}
.toggle-btn{
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #E2E8F0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 340px;
  cursor: pointer;
}
.toggle-btn img{
  width: 12px;
  height: 12px;
}

.other-links{
  padding-right: 20px;
  display: flex;
  gap: 13px;
}
.other-links .embed img{
  height: 12px;
  width: 15px;
}
.other-links .edit img, .other-links .customize img{
  height: 15px;
  width: 15px;
}
.other-links a{
  padding-left: 0 !important;
  text-decoration: none;
}
.bots-list{
  height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.bots-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bots-list .bot span{
  position: relative;
  top: 5px;
}
.bots-list .bot span:hover{
  color:#5573b5 !important;
}

.bots-list li.active {
  background: linear-gradient(180deg, #E3F3FF 0%, #F6F6F6 100%);
}
.bots-list li.active a {
  color: #000;
}

/*toggle sidebar styles*/
.sidebar.collapsed {
  width: 100px;
}
.dashboard-content.collapsed {
  width: calc(100% - 100px);
}

.sidebar.collapsed .nav-item span,
.sidebar.collapsed .become-pro span {
  display: none;
}
.sidebar.collapsed .other-links {
  display: none;
}
.sidebar.collapsed .nav-item,
.sidebar.collapsed .become-pro {
  text-align: center;
}
.sidebar.collapsed .toggle-btn {
  left: 80px;
}
.sidebar.collapsed .toggle-btn img {
  transform: rotate(180deg);
}
.sidebar.collapsed .become-pro {
  margin: 10px 10px 0 10px;
}

/* user dropdown menu css */
.user-dropdown-menu{
  display: none;
  background-color: #fff;
  border: 1px solid #DBEAFE;
  border-radius: 5px;
  position: absolute;
  top:85px;
  right: 23px;
}
.user-dropdown-menu.show{
  display: block;
}
.user-dropdown-menu .user, .user-dropdown-menu .plan{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 10px;
  border-bottom: 0.5px solid #DBEAFE;
}
.user .name, .plan .plan-name{
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: normal;
  color:#475569;
}
.become-pro-small{
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%);
  color: #ffffff;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-left: 15px;
}
.become-pro-small img{
  width: 20px;
}
.user .email,.plan span{
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  color:#64748B;
}
.user-dropdown-menu .user-icon{
  width: 40px;
  height: 40px;
  background-color: #e2e8f0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-dropdown-menu .change-user-password,.user-dropdown-menu .logout{
  text-decoration: none;
  display: flex;
  gap: 20px;
  padding: 10px 10px;
  border-bottom: 0.5px solid #DBEAFE;
}
.user-dropdown-menu .user-icon img{
  width: 18px;
  height: 20px;
}
.user-dropdown-menu .change-user-password img,.user-dropdown-menu .logout img{
  width: 18px;
  height: 18px;
}
.user-dropdown-menu .change-user-password p,.user-dropdown-menu .logout p{
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  color:#64748B;
}
/*dashboard inner styles*/
.content-container {
  display: flex;
}
