#chat-messages
{
    scroll-behavior: smooth;
    height: 350px;
}

#chat-bubble:hover
{
    background-color: #e3ae10;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

#chat-bubble
{
    width:200px;
    height: 40px;
    cursor: pointer;
    background: #ffc107!important;
    border-radius: 5px;
    margin-bottom: 65px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#chat-box
{
    width:50%;
    height: 500px;
    display: none;
    z-index: 1050;
}

.whiteColor
{
    color: #ffffff!important;
}

#resultMatching hr,#generatedResults hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

#resultMatching,#generatedResults
{
    display: none;
    white-space: pre-wrap;
    background-color:#f8f9fa;
    padding:10px;
    border:1px solid #ccc;
}

.AIStyle
{
    color: #ffc107!important;
    font-weight: 900!important;
}

.flexRowType
{
    display: flex;
    flex-direction: row;
}

.gpt-btn
{
    background-color: #ffc107;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gpt-btn a
{
  color:#fff!important;
}

.gpt-btn i
{
    margin-right: 8px;
}

.gpt-btn:hover
{
    background-color: #cd9b04;
    animation: vibrate 0.3s linear infinite;
}














.gpt-btn-left-side
{
    background-color: #ffc107;
    color: #fff;
    font-size: 16px;
    padding: 2px 10px;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gpt-btn-left-side a
{
    color:#fff!important;
}

.gpt-btn-left-side i
{
    margin-right: 8px;
}

.gpt-btn-left-side:hover
{
    background-color: #cd9b04;
    animation: vibrate 0.3s linear infinite;
}

@keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.styleOr
{
    background-color: #ffc107;
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blocMatchingTab
{
    height: 300px;
    overflow: auto;
}
@media screen and (max-width: 767px)
{
    .infoFreeUse
    {
        display: none!important;
    }

    #chat-box
    {
        height: 540px!important;
    }
}
