﻿.fa-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-enabled {
    cursor: pointer;
}

div[id$="dvheaders"] {
    padding-left: 20px;
    padding-right: 20px;
}

    div[id$="dvheaders"] p {
        text-align: center;
        padding: 0;
        margin: 0
    }

        div[id$="dvheaders"] p:first-of-type {
            font-weight: bold;
        }

.recording {
    /*color: red;*/
    animation: pulse 1s infinite;
}

#chatBotMicrophone {
    cursor: pointer
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tooltipNaturalLanguage {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    background: #eee;
 /*   border: 1px solid #ccc;
    border-radius: 5px;*/
 border:none;
    z-index: 99999999;
}

.tooltip-image {
    width: 80px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}
.tooltip-image-small {
    width: 40px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tooltip-text {
    font-size: 12px;
    color: #333;
    text-align:center;
}
.tooltip-text-small {
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* When visible */
.tooltip.show {
    display: flex; /* Important: use flex to keep layout */
}

div.RadToolTip {
    z-index: 10000000 !important;
}

.modal-content {
    position: relative;
}

.my-custom-tooltip {
    --bs-tooltip-bg: #ffffff;
}
.tooltip.custom-tooltip .tooltip-inner {
    background-color: white;
    opacity: 1;
}
.input-icons {
    position: relative;
    width: 100%;
}

.mic-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.input-field {
    width: 100%;
    padding: 10px 40px 10px 10px;
    box-sizing: border-box;
    text-align: left;
}


.input-icons-big {
    position: relative;
    width: 100%;
}

.mic-button-big {
    position: absolute;
    right: 0px;
    bottom: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.input-field-big {
    width: 100%;
    height: 120px;
    padding: 10px 10px 35px 10px; /* Extra bottom padding for mic */
    box-sizing: border-box;
    text-align: left;
    resize: vertical;
}

@media (max-width: 576px) {
    [id$="smallsearchbutton"] {
        display: flex !important; /* Activate flexbox layout */
        align-items: center; /* Vertically center text + icon */
        justify-content: center; /* Horizontally center content */
        text-align: center; /* Fallback for inline content */
        width: 100%;
        margin-top: 20px !important;
    }
    /*[id$="textboxDiv"] {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
      }*/

    /* Tooltip link — position above the input field */
    /*[id$="tooltipLink"] {
        position: absolute !important;
        top: -1.8rem;*/ /* Adjust: distance above the input */
    /*left: 50%;
        transform: translateX(-50%);
        z-index: 10;*/ /* Appear above input */
    /*pointer-events: auto;*/ /* Keep it interactive */
    /*width: auto;
        height: auto;
      }*/

    /* Make sure the input stays clickable and visible */
    /*[id$="searchtextbox"] {
        position: relative;
        z-index: 5;
        width: 100%;
      }*/

}