button, h3, h2{
  font-family: "Space Grotesk", sans-serif;
}
/* create first bot screen css */
.dashboard-content {
  padding: 25px 0 25px 25px;
  background-color: #f8fbff;
  width: calc(100% - 360px);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-welcome h1 {
  font-size: 45px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #083a5e;
}
.user-welcome h2 {
  font-size: 40px;
  font-weight: 700;
  color: #497696;
}
.dashboard-content .cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cards .cards-inner {
  display: flex;
  justify-content: center;
}
.dashboard-content .create-chatbot-card,
.customize-chatbot-card {
  background: linear-gradient(180deg, #f6f6f6 0%, #e3f3ff 100%);
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.create-chatbot-card img,
.customize-chatbot-card img {
  height: 30px;
  width: 30px;
}
.create-chatbot-card span,
.customize-chatbot-card span {
  font-size: 20px;
  font-weight: 700;
  color: #083a5e;
  font-family: "Space Grotesk", sans-serif;
}
.card-custom:hover {
  background-color: #f5f7fa;
  color: #007bff;
}

/* bot name screen css */
.large-card{
  width: 100%;
}
.bot-name-card{
  background: linear-gradient(180deg, #f6f6f6 0%, #e3f3ff 100%);
  border-radius: 20px;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 85%;
  padding: 50px;
}
.bot-name-card-content{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.bot-name-card-content .heading-and-button{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bot-name-card-content .input-and-button{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.back-btn{
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #E2E8F0;
  display: flex;
  justify-content:space-around;
  align-items: center;
}
.back-btn img{
  width: 12px;
  height: 12px;
}

.bot-name-card-image img{
  width:200px;
  height: 230px;
}
.bot-name-card-content h3{
  font-size: 26px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  color: #083a5e;
}
.bot-name-card-content input{
  width: 300px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}
.bot-name-card-content button{
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 8px 40px;
  font-size: 14px;
  width: fit-content;
  font-family: "Space Grotesk", sans-serif;
}

/* enter link screen */
.add-link-card-image img{
  width:200px;
  height: 180px;
}

/* select source of content screen */
.content-cards{
  display: flex;
  gap: 20px;
}
.content-cards .video-link-card, .content-cards .content-file-card{
  background-color: #F6F6F6;
  border-radius: 10px;
  width: 190px;
  height: 180px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.video-link-card img{
  width: 45px;
  height: 30px;
}
.content-file-card img{
  width: 30px;
  height: 30px;
}
.video-link-card span,  .content-file-card span{
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #083a5e;

}

button:disabled {
  opacity: 0.7;
}