/* General Styles */
body {
    margin: 0;
    font-family: 'Gilroy-Regular', sans-serif;
    background-color: #f3f3f3;
}

.ai-botkit-new-dashboard {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.ai-botkit-dashboard-header {
    background-color: #ffffff;
    padding: 1rem 2.5rem;
    border-bottom: 1px solid #d6e5df;
}

.ai-botkit-logo {
    height: 40px;
}

.ai-botkit-dashboard-container {
    display: flex;
    flex: 1;
}

.ai-botkit-dashboard-sidebar {
    background-color: #ffffff;
    padding: 4rem;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-botkit-main-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    color: #143b2d;
    margin: 0 0 1rem 0;
    line-height: normal;
}

.ai-botkit-subtitle {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 20px;
    color: #143b2d;
    margin: 0 0 3rem 0;
}

.ai-botkit-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-botkit-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-botkit-feature-icon {
    background-color: #e0f5ee;
    border-radius: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-botkit-feature-icon img {
    width: 24px;
    height: 24px;
}

.ai-botkit-feature-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    color: #143b2d;
    margin: 0 0 0.5rem 0;
}

.ai-botkit-feature-text p {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    color: #8fa19a;
    margin: 0;
}

.ai-botkit-dashboard-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ai-botkit-login-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 496px;
}

.ai-botkit-login-box h2 {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 32px;
    color: #121712;
    margin: 0 0 2rem 0;
}

.ai-botkit-login-form label {
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-size: 16px;
    color: #143b2d;
    display: block;
    margin-bottom: 0.5rem;
}

.ai-botkit-login-form p {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    color: #8fa19a;
    margin: 0 0 1rem 0;
}

.ai-botkit-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ai-botkit-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d6e5df;
    border-radius: 0.5rem;
    font-size: 14px;
    height: 40px;
}

.ai-botkit-button {
    background-color: #008858;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Gilroy-SemiBold', sans-serif;
}

.ai-botkit-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #abbfb7;
    margin: 0 0 2rem 0;
}

.ai-botkit-separator::before,
.ai-botkit-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #d6e5df;
}

.ai-botkit-separator:not(:empty)::before {
    margin-right: .25em;
}

.ai-botkit-separator:not(:empty)::after {
    margin-left: .25em;
}

.ai-botkit-get-started h3 {
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-size: 16px;
    color: #143b2d;
    margin: 0 0 0.5rem 0;
}

.ai-botkit-get-started p {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    color: #8fa19a;
    margin: 0 0 1rem 0;
}

.ai-botkit-button-primary {
    background-color: #008858;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Gilroy-SemiBold', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.ai-botkit-button-primary:hover {
    background-color: #0E594D;
    color: white;
}
  /* Modal Overlay */
  .ai-botkit-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  /* Modal Box */
  .ai-botkit-kb-modal {
    background: white;
    max-width: 32rem;
    margin: 25% auto;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .ai-botkit-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
  }
  
  .ai-botkit-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #121712;
  }
  
  .ai-botkit-modal-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
  }
  
  .ai-botkit-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .ai-botkit-modal-body p {
    margin: 0;
  }
  .ai-botkit-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
  .ai-botkit-btn-primary {
    background-color: #008858;
    color: white;
    border: 1px solid #008858;
    padding: 0.5rem 0.75rem; /* Averaged padding */
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    
  }
  
  .ai-botkit-btn-primary:hover {
    background-color: #0E594D;
    color: white; /* Added for consistency */
  }

  .ai-botkit-bfcm-banner-image-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }
  .ai-botkit-bfcm-banner-image{
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    max-width: 1200px;
  }
