﻿/* Below style is to remove textbox borders & shadows */
.dds__form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

/* Below style is to show round circles */
.dds__span-gray-circles {
    height: 25px;
    width: 25px;
    background-color: #eeeeee;
    border-radius: 50%;
    display: inline-block;
}
/* Below style is to show Animation on hover cards */
.dds__hover-animation:hover {
    transform: scale(1.03);
}

.dds__hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

/*To avoid arrow in the number textbox*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.dds__reporttable {
    overflow: auto;
}

.dds__icon-button {
    cursor: pointer;
    color: #0076ce;
}


    .dds__icon-button:hover {
        color: #00447c;
    }

/*Icon style for contact us page*/
.dds__icon-contact {
    color: #f2af00;
    font-size: 24px;
}

.dds__body-height-60 {
    height: 60vh;
}

.dds__body-height-80 {
    height: 80vh;
}

.dds__body-height-100 {
    height: 100vh;
}

.input-required-bg {
    background-color: #ffffc9 !important;
    border-color: #ce1126 !important;
}

.show-content {
    height: auto;
}

.hide-content {
    height: 100px;
    overflow: hidden;
}
#btnShowMoreLess span {
    margin-left: 2.1rem !important;
}
#notifications-default #btnShowMoreLess span {
    margin-left: 2.1rem !important;
}

/*Custom style for Scrollbar Starts*/
.scrollbar {
    float: left;
    /*background: #F5F5F5;*/
    overflow-y: auto;
    /*margin-bottom: 25px;*/
}

/*.slim-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.slim-scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.slim-scrollbar::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #006bbd;
}*/
/*Custom style for Scrollbar End*/

/*Remove down arrow in datalist of Global Product search in _layoutAfterLogin-Starts*/
.dds__msthd-search-input::-webkit-calendar-picker-indicator {
    display: none !important;
    background-color: inherit;
    opacity: 0;
}
/*Remove down arrow in datalist of Global Product search in _layoutAfterLogin-sEnd*/

/*SVG Icon Custom Size Starts*/
.SvgIconCustomSize16 {
    height: 16px !important;
    width: 16px !important;
}
/*SVG Icon Custom Size Ends*/


/*text-truncate Custom Starts*/
.text-truncate-custom150px {
    display: inline-block;
    max-width: 150px;
}
.text-truncate-custom300px {
    display: inline-block;
    max-width: 300px;
}
/*text-truncate Custom Ends*/


.highlightSelectedTr {
    background-color: #41b6e6;
}

.dds__col-fullscreen {
    background-image: url('/Images/Login_Background.png');
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image within the div */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    position: fixed; /* Keeps the image fixed in place */
    top: 0;
    left: 0;
    z-index: -1; /* Keeps it behind other content */
    width: 50vw; /* Default to 50% width on larger screens */
    height: 100vh; /* Full height of the viewport */
}
/* Right side content area */
.ml-lg-auto {
    margin-left: 50vw !important; /* Push content to right of background */
    width: 50vw; /* Match background width */
    padding: 2rem; /* Optional padding */
}

/* Large screens */
@media (min-width: 1200px) {
    .dds__col-fullscreen {
        width: 50vw;
        height: 100vh;
    }

    .ml-lg-auto {
        margin-left: 50vw !important;
        width: 50vw;
    }
    .dds__col-fullscreen img {
        width: 100%;
        height: auto;
    }

}

/* Medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .dds__col-fullscreen {
        width: 50vw;
        height: 100vh;
    }

    .ml-lg-auto {
        margin-left: 50vw !important;
        width: 50vw;
    }
    .dds__col-fullscreen img {
        width: 100%;
        height: auto;
    }

}

/* Small screens (stacked layout) */
@media (max-width: 991px) {
    .dds__col-fullscreen {
        width: 100%;
        height: auto;
        position: relative; /* Allow normal flow */
    }

        .dds__col-fullscreen img {
            width: 100%;
            height: auto;
        }

    .ml-lg-auto {
        margin-left: 0 !important;
        width: 100%;
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }
}