/* iCheck plugin Square skin, blue
----------------------------------- */
.icheckbox_square-blue,
.iradio_square-blue {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(blue.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-blue {
    background-position: 0 0;
}
    .icheckbox_square-blue.hover {
        background-position: -24px 0;
    }
    .icheckbox_square-blue.checked {
        background-position: -48px 0;
    }
    .icheckbox_square-blue.disabled {
        background-position: -72px 0;
        cursor: default;
    }
    .icheckbox_square-blue.checked.disabled {
        background-position: -96px 0;
    }

.iradio_square-blue {
    background-position: -120px 0;
}
    .iradio_square-blue.hover {
        background-position: -144px 0;
    }
    .iradio_square-blue.checked {
        background-position: -168px 0;
    }
    .iradio_square-blue.disabled {
        background-position: -192px 0;
        cursor: default;
    }
    .iradio_square-blue.checked.disabled {
        background-position: -216px 0;
    }

/* Retina support */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (-moz-min-device-pixel-ratio: 1.5),
       only screen and (-o-min-device-pixel-ratio: 3/2),
       only screen and (min-device-pixel-ratio: 1.5) {
    .icheckbox_square-blue,
    .iradio_square-blue {
        background-image: url(blue@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}
    body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
        }

        .login-page {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100vh;
            position: relative;
        }

        .sliding-background {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            overflow: hidden;
        }

        .sliding-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .sliding-background img.active {
            opacity: 1;
        }

        .login-container {
            position: relative;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
         .login-box {
            max-width: 400px; /* Adjust the width of the login box as needed */
          
             margin-left: 20px;
        }

         .table-container {
        max-height: 500px; /* Adjust the height as needed */
        overflow-y: auto;
        position: relative;
    }

    .table {
        width: 100%;
        border-collapse: collapse;
    }

    .table thead th {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 0;
        background-color: #f8f9fa; /* Adjust the background color as needed */
        z-index: 10; /* Ensures the header stays above the other rows */
    }

    .table tbody tr:nth-child(even) {
        background-color: #f2f2f2; /* Optional: alternate row colors */
    }

    .table tbody tr:nth-child(odd) {
        background-color: #ffffff;
    }

    .invalid-field {
        background-color: red;
        color: white;
    }

    .invalid-row {
        background-color: lightcoral;
    }