﻿.rz-multiselect-item-content, .rz-inputtext, .rz-dropdown-item span, .rz-chip-text, .rz-multiselect-header {
    font-size: 1.4rem !important;
}

.rz-datatable-thead th .rz-column-title, .rz-grid-table thead th .rz-column-title {
    font-size: 1.4rem !important;
    white-space: break-spaces !important;
    text-transform: uppercase !important;
    line-height: 2.0rem !important;
}

.rz-datatable-data td .rz-cell-data, .rz-grid-table td .rz-cell-data {
    font-size: 1.3rem !important;
    a white-space: break-spaces !important;
}

.rz-datatable-data td .rz-cell-data, .rz-grid-table td .rz-cell-data {
    white-space: break-spaces !important;
}

.rz-datatable-thead th .rz-column-title-content, .rz-grid-table thead th .rz-column-title-content {
    white-space: break-spaces !important;
}

.rz-datatable-tfoot td, .rz-grid-table tfoot td {
    font-size: 1.3rem !important;
}

.rz-datatable-data td .rz-column-footer, .rz-grid-table td .rz-column-footer {
    color: red !important;
}

.rz-colorpicker, .rz-lookup-search input, .rz-numeric, .rz-datepicker > .rz-inputtext, .rz-multiselect, .rz-dropdown, .mask, .rz-textarea, .rz-textbox {
    font-size: 1.4em !important;
    height: inherit !important;
}

.rz-link {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
}

    .rz-link:hover, .rz-link:focus {
        color: var(--bs-link-hover-color-rgb);
    }

.style-model {
    font-weight: bold;
    font-size: 11px;
}

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    /* Tooltip text */
    .tooltip-container .tooltiptext {
        visibility: hidden;
        width: 300px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%; /* Position the tooltip above the element */
        left: 50%;
        margin-left: -150px; /* Offset the tooltip */
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Arrow for the tooltip */
        .tooltip-container .tooltiptext::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    /* Show the tooltip when hovering */
    .tooltip-container:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }


    /* Tooltip text */
    .tooltip-container .tooltiptext-60 {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%; /* Position the tooltip above the element */
        left: 50%;
        margin-left: -60px; /* Offset the tooltip */
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Arrow for the tooltip */
        .tooltip-container .tooltiptext-60::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    /* Show the tooltip when hovering */
    .tooltip-container:hover .tooltiptext-60 {
        visibility: visible;
        opacity: 1;
    }

.consistent-font {
    letter-spacing: 1px;
}


.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
   color:white
}

    .form-row label {
        width: 100px; /* just for label alignment */
    }

    .form-row .input-wrapper,
    .form-row input {
        flex: 1; /* takes up remaining space */
        position: relative;
    }

    .form-row input {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
    }

    .form-row .input-wrapper input {
        padding-right: 30px; /* space for eye icon */
    }

    .form-row .input-wrapper span {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 14px;
    }

.form-group{
    align-items:center !important;
}

.radzentextbox{
    height: 35.5px !important;
}

.loading {
    background-color: rgba(127, 125, 126, 0.2);
    padding: 1.25rem;
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
}

.loading-content {
    z-index: 5;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    text-align: center;
    width: 100%;
}