.first-comment {
  min-height: 425px; /* Ensures uniform height for first comments */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Ensures text starts at the top */
}

.second-comment {
  min-height: 425px; /* Ensures uniform height for second comments */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hiringmgr {
  margin-top: 20px;
  padding: 15px 0px 0px 0px;
}

#logo {
  width: 150px;
  height: auto;
  max-width: 100%;
  max-height: 60px;
}/*# sourceMappingURL=secondary.css.map */

.ai-assistant-page {
    padding: 2.5rem 0;
    background-color: #f8f9fa;
}

.ai-question-card,
.ai-process-card,
.ai-sources-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(31, 45, 61, 0.08);
}

.ai-question-textarea {
    min-height: 135px;
    resize: vertical;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.75rem;
}

.ai-question-textarea:focus {
    border-color: #7952b3;
    box-shadow: 0 0 0 0.2rem rgba(121, 82, 179, 0.15);
}

.ai-submit-button {
    min-width: 170px;
    padding: 0.7rem 1.5rem;
    border-radius: 0.65rem;
}

.ai-process-step {
    display: flex;
    padding-bottom: 1rem;
}

.ai-process-step:last-child {
    padding-bottom: 0;
}

.ai-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin-right: 0.85rem;
    border-radius: 50%;
    background-color: #7952b3;
    color: #ffffff;
    font-weight: 700;
}

.ai-process-content h3 {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.ai-process-content p {
    margin-bottom: 0;
    color: #667085;
    font-size: 0.88rem;
    line-height: 1.4;
}

.ai-inline-answer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.ai-answer-scroll {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.75rem;
    font-size: 1rem;
    line-height: 1.65;
}

.ai-loading-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(121, 82, 179, 0.08);
}

.ai-source-excerpt {
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .ai-assistant-page {
        padding: 2rem 0;
    }

    .ai-answer-scroll {
        max-height: none;
        overflow-y: visible;
    }
}
.ai-source-item {
overflow: hidden;
margin-bottom: 0.75rem;
border: 1px solid var(--bs-border-color);
border-radius: 0.75rem !important;
}

.ai-source-item:last-child {
    margin-bottom: 0;
}

.ai-source-button {
    padding: 1rem 1.1rem;
    background-color: var(--bs-body-bg);
    box-shadow: none;
}

.ai-source-button:not(.collapsed) {
    color: inherit;
    background-color: var(--bs-tertiary-bg);
    box-shadow: none;
}

.ai-source-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.ai-source-number {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bs-primary);
    background-color: rgba(
        var(--bs-primary-rgb),
        0.12
    );
}

.ai-source-title {
    overflow-wrap: anywhere;
    font-weight: 600;
    line-height: 1.35;
}

.ai-source-type {
    font-size: 0.7rem;
    font-weight: 500;
}

.ai-source-metadata {
    line-height: 1.4;
}

.ai-source-body {
    padding: 1rem 1.25rem 1.25rem;
    background-color: var(--bs-body-bg);
}

.ai-source-excerpt {
    margin: 0;
    padding: 1rem;
    border-left: 4px solid var(--bs-primary);
    border-radius: 0.25rem 0.5rem 0.5rem 0.25rem;
    background-color: var(--bs-tertiary-bg);
    font-size: 0.95rem;
    line-height: 1.65;
    white-space: pre-wrap;
}

.min-w-0 {
    min-width: 0;
}