/* Initially hide all content divs */
.content {
    display: none;
}

.alfaNumberInputBox {
    background-color: #636363;
    color: white;
    font-family: Consolas;
    font-size: 20px;
    height: 36px;
    padding: 0px 8px;
    text-align: right;
    text-transform: uppercase;
    width: 190px;
}

.alfaNumberInputBox_Error {
    background-color: indianred;
    color: white;
    font-family: Consolas;
    font-size: 20px;
    height: 36px;
    padding: 0px 8px;
    text-align: right;
    text-transform: uppercase;
    width: 190px;
}

.selectBox {
    background-color: #8C8C8C;
    border-radius: 25px;
    color: white;
    font-family: Consolas;
    font-size: 22px;
    height: 26px;
    padding: 0px 4px;
    width: 60px;
}

.selectBox_Error {
    background-color: indianred;
    border-radius: 25px;
    color: white;
    font-family: Consolas;
    font-size: 22px;
    height: 26px;
    padding: 0px 4px;
    width: 60px;
}

.tableCell {
    padding: 10px;
    text-align: center;
}

.tableCellEqualSign {
    color: white;
    font-size: 30px;
    padding: 0px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.commonText {
    color: white;
    font-family: Consolas;
    font-size: 13px;
    padding: 0px;
}

.labelText {
    color: white;
    font-size: 15px;
    padding-bottom: 5px;
    white-space: nowrap;
}

.wordLengthFilterSelectbox {
    background-color: #636363;
    color: black;
    font-family: Consolas;
    font-size: 15px;
    height: 26px;
}

.resultDiv_large {
    background-color: #545454;
    border: 2px solid black;
    color: lightgray;
    font-family: Consolas;
    font-size: 13px;
    margin: 0px;
    overflow-y: scroll;
    scrollbar-color: #C0C0C0 #717171;
    padding: 5px;
    width: 190px;
    height: 314px;
}

.validation-summary-errors ul,
.field-validation-error ul {
    list-style-type: none; /* Removes bullets */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
}

    .validation-summary-errors ul li,
    .field-validation-error ul li {
        display: inline; /* Display errors inline or use 'block' for block level */
    }


.tooltipInfo {
    position: relative;
    display: inline-block;
    cursor: help; /* Changes cursor to indicate it's interactive */
}

    .tooltipInfo .tooltipInfo-text {
        visibility: hidden;
        width: 180px;
        background-color: black;
        color: #fff;
        font-family: Consolas;
        font-size: 13px;
        text-align: left;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        top: 125%; /* Positions the tooltip below the text */
        left: 50%;
        transform: translateX(-50%); /* Center the tooltip relative to the text */
    }

    .tooltipInfo:hover .tooltipInfo-text {
        visibility: visible;
    }
