html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

td img {
    width: 100px;
}

th, td {
    vertical-align: middle;
}

.shimmer-wrapper {
    position: relative;
    width: 150px;
    height: 100px;
    background: #f6f7f8;
    overflow: hidden;
}

    .shimmer-wrapper::after {
        content: '';
        position: absolute;
        inset: 0 0 0 -150px; /* shorthand for top/right/bottom/left */
        width: 150px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        animation: shimmer 1.5s infinite;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
        pointer-events: none;
    }

    .shimmer-wrapper.loaded {
        height: auto;
        background: transparent;
    }

        .shimmer-wrapper.loaded::after {
            opacity: 0;
            animation: none;
        }

@keyframes shimmer {
    100% {
        transform: translateX(300px);
    }
}

.actual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.shimmer-wrapper.loaded .actual-img {
    opacity: 1;
}

body {
    margin-bottom: 60px;
}

/*reset button style*/
.btnBorder {
    width: 79px;
    height: 39px;
    margin: 0px 0 0 3.1px;
    padding: 3px 6px;
    border-radius: 4px;
    border: solid 1px #544743;
    background-color: #fff;
    font-size: 14px;
    color: #544743;
}

/*add button style*/
.btnAdd {
    width: 79px;
    height: 39px;
    margin: 0px 0 0 3.1px;
    padding: 3px 6px;
    border-radius: 4px;
    border: solid 1px #544743;
    background-color: #544743;
    font-size: 14px;
    color: #fff;
}

/*search icon style*/
.searchicondesign {
    width: 45px;
    height: 41px;
    border-radius: 4px;
    border: solid 1px #fff;
    background-color: #544743;
    font-size: 14px;
    color: #fff;
}

/*excel export button style*/
.export .btn {
    width: 79px;
    height: 30px;
    margin: -2px 0 0 5.1px;
    padding: 3px 6px;
    border-radius: 4px;
    border: solid 0.5px green;
    background-color: #fff;
    font-size: 14px;
    color: green;
}

.export p {
    font-size: 16px;
    font-weight: 500;
}

    .export p span {
        font-size: 12px;
        font-weight: 400;
        color: #8a8a8a;
        margin: 6px;
    }

/*action buttons style*/
.borderNone {
    border: none;
    background: transparent;
}

.query-text {
    min-width: 20cm;
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word; /* Wrap long words */
    word-break: break-word; /* Ensure breaks occur on long words */
}

@media (max-width: 600px) {
    .query-text {
        min-width: 5cm;
    }
}
