﻿/* In your CSS file */
:root {
    --dvDashboard-color: #e5dcdc;
    --dvTheme-color: #0073aa;
}

#dvDashboard {
    /*background-color: #e5dcdc;*/
    background: var(--dvDashboard-color);
    height: 90vh;
    position: fixed;
    overflow: auto
}
.imageLogin {
    background-image: url(../../Image/LoginBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
    box-sizing: content-box;
    position: relative;
    background-position-x: 10%;
    background-attachment: fixed;
}

.cssLogin {
    align-content: center;
    height: 520px;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.13);
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 50px;
}

.password-container {
    position: relative;
}

    .password-container input {
        width: 100%;
        padding-right: 30px; /* space for eye icon */
    }

.toggle-eye-login {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: gray;
}
.toggle-eye {
    position: absolute;
    left: 240px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: gray;
}

.HeaderContent {
    height: auto;
/*    background-color: #5c984873;*/
    background: var(--dvTheme-color);
    color: white;
    /*font-size:large;*/
    /*padding:5px;*/
    margin: 0px;
    text-align: left;
}

.FooterContent {
    height: 25px;
    /*background-color: #0073aa !important;*/
    background: var(--dvTheme-color);
    color: white;
    z-index: 1030;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: inherit;
}

/*Start : Custom Scrollbar*/
.custom_scrollbar {
    overflow: auto !important;
}

    .custom_scrollbar::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .custom_scrollbar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 8px;
    }

    .custom_scrollbar::-webkit-scrollbar-thumb {
        border-radius: 8px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
        background-color: #e9e9e9;
    }
/*End : Custom Scrollbar*/

.EnableDiv {
    pointer-events: visible;
    opacity: 1;
}
.DisableDiv {
    pointer-events: none;
    opacity: 0.5;
}
.DisableElement {
    pointer-events: none;
    opacity: 0.5;
}

.SelectedMenu {
    /*background-color: #854bc5 !important;*/
    /*background-color: #0073aa !important;*/
    background: var(--dvTheme-color);
    color: black !important;
}

.subA {
    /*padding: 2px !important;*/
}

.Navigation {
    /*background-color:#854bc5 !important;*/
    /*background-color: #0073aa !important;*/
    background: var(--dvTheme-color);
}
/*Start : Table*/
.ReportTable {
    background-color: white;
    display: table;
    text-indent: initial;
    border-spacing: 2px;
    border-collapse: collapse;
    caption-side: bottom;
    /*width: 100%;*/
    width:100px;
    table-layout:fixed;
    margin-bottom: 1rem;
    vertical-align: top;
}

    .ReportTable thead, tfoot {
        height: 50px;
        /*background-color:#854bc5 !important;*/
        /*background-color: #0073aa !important;*/
        background: var(--dvTheme-color);
        color: white;
    }
    .ReportTable th {
        cursor: pointer;
        /*background-color: #f2f2f2;*/
        position: relative;
    }

    .ReportTable tbody tr {
        height: 40px;
        border-bottom: 1px solid #ddd;
    }

.SelectRow {
    background-color: #e5dcdc;
}



.TimeTable {
    background-color: white;
    display: table;
    text-indent: initial;
    border-spacing: 2px;
    border-collapse: collapse;
    caption-side: bottom;
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
}

    .TimeTable thead {
        height: 50px;
        /*background-color:#854bc5 !important;*/
        /*background-color: #0073aa !important;*/
        background: var(--dvTheme-color);
        color: white;
    }

    .TimeTable tbody tr {
        height: 40px;
        border-bottom: 1px solid #e5dcdc;
    }

    .TimeTable tbody td {
        border-right: 1px solid #e5dcdc;
    }

    .TimeTable tbody th {
        /*background-color:#854bc5 !important;*/
        /*background-color: #0073aa !important;*/
        background: var(--dvTheme-color);
        color: white;
    }

/*End : Table*/

.errorClass {
    color: red;
    max-height: 80px;
    overflow: auto;
}

.danger {
    color: red;
    font-weight: bold;
}

.dropdown-menu {
    right: -65px !important;
    left: auto !important;
}