.question-input {

    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 2px #647589 solid;
    border-radius: 20px;
    background: #fff;

    &:disabled {
        background-color: #647589;
        color: #fff;
        pointer-events: none;
        cursor: not-allowed;
    }
}

.ai-response-tabs {
    overflow-x: hidden;

    .tab-content {
        height: auto;
    }

    .tab-pane {
        height: 90%;

    }

    .icon-place-holder {
        color: #abaeb3;
    }


}

.ai-main-card { 
    height: 100%; 
    width: 100%;
     overflow: 'hidden';
     overflow-y: scroll;
    }

.ai-response-button {
    margin-left: 20px;
    padding-inline: 10px;
    width: auto;
    background-color: #101010 !important;
    border-radius: 8px;
}

.ai-response-button:disabled{
    background-color: #abaeb3 !important;
    pointer-events: none;
    color: #fff;
}

.gt-logo {
    width: 200px;
}

.ai-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.ai-spinner-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    .spinner-border {
        width: 3rem;
        height: 3rem;
    }

    p {
        margin-bottom: 0 !important;
        margin-left: 5px;
    }
}

.opacity-1 {
    opacity: 1;
}

.fact-score {
    background-color: #223645;
    border-radius: 4px;
    padding: 8px 9px;
    color: #fff;
    width: 50px;
}

.chat-fact-checker-input {
    flex: 1;
    padding: 10px;
    border: none;
    margin-left: 10px;
    font-size: 18px;
    color: #101010;
    background: transparent;
}
.chat-fact-checker-input:focus{
    color: #101010;
}
.fact-checker-table-response {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}
.fact-checker-table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0,0,0,.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0,0,0,.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0,0,0,.075);
    border-color: #dee2e6;
    color: #212529;
    margin-bottom: 1rem;
    vertical-align: top;
    width: 100%;
}
.fact-checker-submit-btn {
    background-color: #101010 !important;
    color: #fff;
    border: #4CAF50 1px solid;
    border-radius: 8px;
    padding-inline: 10px;
    font-weight:700;
}
.fact-checker-submit-btn:disabled {
    background-color: #abaeb3 !important;
}
.ask-question-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15%;
}