﻿.nodata-1 {
    width: 360;
    height: 302;
    angle: 0 deg;
    opacity: 1;
    top: 15px;
    left: -33px;
}

.iconresult.e-btn-icon::before {
    padding: 0 !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    position: absolute !important;
}

.iconresult.e-btn-icon, iconresult.e-icon-left {
    overflow: hidden !important;
    width: 8px !important;
    height: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    position: absolute !important;
}

.tableresult.e-dropdown-btn {
    background-color: transparent !important;
    color: #7A8684 !important;
    font-size: 25px;
    width: 10px;
    /*    height: 20px;*/
    border: none;
    vertical-align: middle !important;
    text-align: center !important;
    padding: 0 !important;
    position: relative !important;
}
.active-border {
    border: 1px solid #006D35 !important;
    border-radius: 4px;
}
    .tableresult.e-dropdown-btn:hover {
    }

    .tableresult.e-dropdown-btn.e-active {
    }

.tableresult.e-dropdown-popup {
    width: 200px !important;
    padding: 0 !important;
    position: absolute !important;
    left: auto !important;
    right: 75px !important;
    display: flex !important;
   
}

    .tableresult.e-dropdown-popup ul.e-dropdown-menu {
        border: 1px solid #839D8D;
        position: absolute !important;
        width: 100% !important;
        margin-top: -20px !important;
        box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.12);
        left: 0 !important;
    }

    .tableresult.e-dropdown-popup ul .e-item {
    }

        .tableresult.e-dropdown-popup ul .e-item:hover {
            background-color: #E1F9ED;
            color: #006D35;
        }

        .tableresult.e-dropdown-popup ul .e-item:active {
        }


.dash-cb {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

    /* Hide native checkbox */
    .dash-cb input {
        position: absolute;
        opacity: 0;
    }

    /* Outer dashed border */
    .dash-cb .outer {
        width: 22px;
        height: 22px;
        border: 2px dotted #4b5c54;
        border-radius: 3px; /* outer radius */
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Inner small square */
    .dash-cb .inner {
        width: 14px;
        height: 14px;
        border: 2px solid #4b5c54;
        border-radius: 1px; /* mild radius */
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Tick (hidden initially) */
    .dash-cb .tick {
        width: 5px;
        height: 9px;
        border: solid #37bd69;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        display: none;
    }

    /* Show tick on click */
    .dash-cb input:checked + .outer .tick {
        display: block;
    }

    /* Active color */
    .dash-cb input:checked + .outer {
        border-color: #37bd69;
    }

        .dash-cb input:checked + .outer .inner {
            background-color: #37bd69;
            border:none;
        }

        .dash-cb input:checked + .outer .tick {
            border-color: #fff;
        }

.animal-popup {
    position: absolute;
    width: 260px;
    background: #1f4f52;
    color: white;
    border-radius: 8px;
    z-index: 1000;
}

.popup-down {
    top: 40px;
}

.popup-up {
    bottom: 40px;
}
.table-popup-open {
    padding-bottom: 220px !important; /* popup height + margin */
}

.parent-div{
    width:100%;
    
    position:relative;
    padding:0;
    margin-top:20px;
    max-width:100%;
}
.sticky-fixed {
    position: fixed;
    top:0;
    
    width:77.8%;
    max-width:inherit !important;
    z-index: 1050;
    animation: slideDown 0.25s ease-out;
    
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}




.bottom-action-bar {
    position: sticky; /* stays inside content area */
    bottom: 0; /* sticks to bottom */
    background: #ffffff;
    width:100%;
    padding: 15px !important;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08); /* subtle top shadow */
    z-index: 20;
    text-align:right;
}

    /* Prevent container width jump */
    .bottom-action-bar.container {
        max-width: 100%;
    }