﻿/**************** Rad Grid ****************/
@import url('../../../../../localhost:62596/Module.css');
.PagerButton
{
    padding: 1px;
    cursor: pointer;
    border: 0px;
    background: transparent url(Images/first.gif) no-repeat scroll center;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.PagerButton:hover
{
    border: 1px solid #9EB6CE;
    padding: 0px;
}

.FirstPage
{
    background: transparent url(Images/first.gif) no-repeat scroll center;
}

.PrevPage
{
    background: transparent url(Images/prev.gif) no-repeat scroll center;
    margin-right: 6px;
}

.NextPage
{
    background: transparent url(Images/next.gif) no-repeat scroll center;
}

.LastPage
{
    background: transparent url(Images/last.gif) no-repeat scroll center;
}
.colorCodeReason {
    background-color: gray;
    border: 1px solid black;
    color: white;
    display: block;
    left: 5px;
    position: absolute;
    text-align: left;
    top: 1.3em;
    width: 220px;
    z-index: 2000;
}
.colorStatusParent {
    position: relative;
}
.labels
{
font-weight:bold;
}


.sortby-container {
    display: none;
    flex-direction: column;
    width: 120px;
    position: absolute;
    margin-top: 5px;
    right: 0;
    opacity: 0;
    z-index: 10000;
    transform: translateY(-20px);
    animation: slide-down 0.3s forwards;
}

.btn-level {
    border: 1px solid;
    margin: auto;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-level:hover {
        background: #f5f5f5;
    }

.btn-sortby {
    padding: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-sortby:hover {
        background: #f5f5f5;
    }

.div-sortby {
    border: 1px solid;
    display: none;
    position: absolute;
    z-index: 10000;
    right: 121px;
    top: 64px;
    background: #eee;
    flex-direction: column;
    padding: 4px;
    opacity: 0;
    transform: translateX(100%);
    animation: slide-in 0.5s forwards;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.div-sortby .spnSortby {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.div-sortby select {
    border-radius: 4px;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .div-sortby select:hover {
        cursor: pointer
    }

    .div-sortby select:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
        outline: none;
    }


select:disabled {
    pointer-events: none;
    opacity: 0.6;
    background-color: #e9ecef;
    color: #6c757d;
}

.togleSection {
    display: flex;
    flex-direction: column;
    width: 60px;
    margin-right: 3px;
    margin-top: -10px;
}


@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-filter {
    float: right;
    margin-right: 5px;
    margin-top: 3px;
}

.gridResponsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.autoLayout {
    table-layout: auto !important;
}