
:root {
    /* HRF NEW*/
    --header: #11576F;
    --subheader1: #286E86;
    --subheader2: #3E849C;
    --subheader3: #62A8C0;
    --subheader4: #6BB1C9;
    --assistantBackground: #f8f8f8;
    --tabHover: #439ab8;
    --tabColor: white;
    --primary: #11576F;
    --secondary: #f2f3f5;
    --accent: #62A8C0;
    --background: white;
    --text: #404040;
    --error: #cc0033;
    --success: #336600;
    --mainfont: Century Gothic, Arial, Verdana, Geneva, Tahoma, sans-serif;
}

body, table, tr {
    font-family: var(--mainfont);
    margin: 0;
    padding: 0;
    font-size: 11px;
}

td {
    font-family: var(--mainfont);
    margin: 0;
    padding: 1px;
    font-size: 11px;
}


.LoginHeaderLabel {
    background-color: var(--header); /* Keep existing header color variable */
    font-size: 16px; /* Slightly increase the font size for readability */
    text-align: center;
    font-family: var(--mainfont);
    color: white;
    justify-content: center;
    align-items: center;
}

.LoginHeader {
    background-color: var(--header); /* Keep existing header color variable */
    font-size: 16px; /* Slightly increase the font size for readability */
    text-align: center;
    font-family: var(--mainfont);
    color: white;
    height: 40px; /* Increase the height for more spacious design */
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

    /* Optional: Add hover effect if header needs to change when interacted with */
    .LoginHeader:hover {
        background-color: var(--subheader1); /* Slightly darker shade on hover */
    }

/* .LoginHeader {
    background-color: var(--header); 
    font-size: 15px;
    text-align: center;
    font-family: var(--mainfont);
    color: white;
    height: 30px;
} */

/*page Header: pg*/
.pgDiv {
    border-color: #B0BBC9;
    border-width: 1px;
    border-style: solid;
    height: 32px;
}

.pgTable {
    height: 32px;
    padding: 0;
    width: 100%
}

.pgRow {
    height: 32px;
    text-align: left;
    background-color: var(--header); /* #25a0da;*/
    font-size: 15px;
    text-align: center;
    font-family: var(--mainfont);
    color: white;
    height: 30px;
}

.pgCol1 {
    border: 0;
    padding-left: 10px;
    vertical-align: middle;
    text-align: left;
}

.pgCol2 {
    border: 0;
    width: 150px;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap
}

.LoginBody {
    /*background: linear-gradient(201deg, #2C1B33, #004C8A, #E03A28, #F15A29, #F79442);*/
    padding-left: 5%;
    padding-right: 5%; 
    background: url(../../images/background.jpg);
    overflow-y: hidden;
    background-size: cover;
    background-position: center;
}

.text {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #404040;
    text-align: left;
    vertical-align: middle;
}

.HeaderLabel {
    font-family: var(--mainfont);
    font-size: 12px;
    font-weight: normal;
    color: #404040;
    text-align: left;
    vertical-align: middle;
}

.bold {
    font-weight: bold;
}

/* Standardized Bold Text Styling */
.boldtext,
.BoldText,
.Boldtext {
    font-family: var(--mainfont);
    font-size: 12px; /* Improved readability */
    font-weight: bold;
    color: #333; /* Slightly darker for better contrast */
    line-height: 1.4;
}

/* Standardized Blue Text Styling */
.BlueTextNW,
.BlueTextNw,
.bluetextnw {
    font-family: var(--mainfont);
    font-size: 12px; /* Improved readability */
    color: #404040; /* More vibrant blue */
    text-align: left;
    line-height: 1.4; /* Better spacing */
    transition: color 0.3s ease;
}

    /* Optional: Add a hover effect for better UX */
    .BlueTextNW:hover,
    .BlueTextNw:hover,
    .bluetextnw:hover {
        color: var(--primary);
    }


/* .boldtext, .BoldText, .Boldtext {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: bold;
    color: #404040;
} */
/* 
.BlueTextNW, .BlueTextNw, .bluetextnw {
    font-family: var(--mainfont);
    font-size: 11px;
    color: #404040;
    text-align: left;
} */

.center {
    -moz-align-content: center;
    -o-align-content: center;
    -webkit-align-content: center;
    align-content: center;
    text-align: center
}

.right {
    text-align: right !important;
}

.red {
    color: red !important;
}

.WhiteTextNW {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: white;
}

a, .a, .A {
    font-family: var(--mainfont);
    font-size: 11px; /* Slightly increase the font size for better readability */
    font-weight: 400; /* Normal weight with better legibility */
    color: #336600;
    vertical-align: middle;
    text-decoration: none; /* Remove the default underline */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition on hover */
}

    a:hover, .a:hover, .A:hover {
        text-decoration: underline; /* Only underline on hover */
        color: #228B22; /* Change color to a slightly darker green on hover */
    }

/* a, .a, .A {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #336600;
    vertical-align: middle;
    text-decoration: underline;
}

    .a:hover, .A:hover {
        font-weight: bold;
    } */
/* 
.A {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #336600;
    vertical-align: middle;
    text-decoration: underline;
}

    .A:hover {
        font-weight: bold;
    } */

.aWhite {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: White;
    vertical-align: middle;
    text-decoration: underline;
}

    .aWhite:hover {
        font-weight: bold;
        color: White;
    }

.button {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: #F5F5F5;
    color: #666;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    /* width: 142px; */
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .button:hover {
        background-color: var(--accent);
    }

.buttonNW {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: #F5F5F5;
    color: #666;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .buttonNW:hover {
        background-color: var(--accent);
    }

.button:disabled {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid #999999;
    background-color: #F5F5F5;
    color: #C0C0C0;
    cursor: default;
    height: 36px;
    margin: 4px;
    min-width: 120px;
    padding: 0 16px;
    text-align: center;
    text-decoration: line-through;
    border-radius: 4px;
}

.BtnSecondary:disabled, .btnSecondary:disabled, .BtnPrimary:disabled, .btnPrimary:disabled {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid #999999;
    background-color: #F5F5F5;
    color: #C0C0C0;
    cursor: default;
    /* height: 29px; */
    margin: 3px 2px 3px 2px;
    min-width: 120px;
    padding: 0 8px;
    text-align: center;
    text-decoration: line-through;
}

.BtnPrimary, .btnPrimary {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    min-width: 120px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .BtnPrimary:hover, .btnPrimary:hover {
        background-color: var(--accent);
    }

.BtnPrimary120 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: #F5F5F5;
    color: #666;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 120px;
}

    .BtnPrimary120:hover, .BtnPrimary120:hover {
        background-color: var(--accent);
    }

.BtnPrimary150 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: #F5F5F5;
    color: #666;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    width: 150px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .BtnPrimary150:hover, .BtnPrimary150:hover {
        background-color: var(--accent);
    }

.BtnPrimary200 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: #F5F5F5;
    color: #666;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 200px;
}

    .BtnPrimary200:hover, .BtnPrimary200:hover {
        background-color: var(--accent);
        font-weight: bold;
    }

.BtnSecondary, .btnSecondary {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--accent);
    background-color: var(--secondary);
    color: var(--text);
    cursor: default;
    height: 36px;
    margin: 4px;
    width: 140px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .BtnSecondary:hover, .btnSecondary:hover {
        background-color: var(--accent);
    }

.BtnSecondary120 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--accent);
    background-color: var(--secondary);
    /* color: white; */
    cursor: default;
    height: 36px;
    margin: 4px;
    min-width: 120px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .BtnSecondary120:hover, .BtnSecondary120:hover {
        background-color: var(--accent);
    }

.BtnSecondary150 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--accent);
    background-color: var(--secondary);
    /* color: white; */
    cursor: default;
    height: 36px;
    margin: 4px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 150px;
    min-width: 120px !important;
}

    .BtnSecondary150:hover, .BtnSecondary150:hover {
        background-color: var(--accent);
    }

.btnSecondary200, .BtnSecondary200 {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--accent);
    background-color: var(--secondary);
    cursor: default;
    height: 36px;
    margin: 4px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 200px;
}

    .btnSecondary200:hover, .btnSecondary200:hover {
        background-color: var(--accent);
    }

.buttonchrome {
    font-family: var(--mainfont);
    font-size: 11px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    height: 36px;
    margin: 4px;
    min-width: 120px;
    padding: 0 16px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .buttonchrome:hover {
        background-color: var(--accent);
    }

.roundContainer {
    border: 1px solid rgba(0, 0, 0, 0.1);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.logintd {
    border: 1px solid #404040;
    background-color: #ffffff;
    /*width: 50%;*/
    padding: 2px;
    vertical-align: top;
    align-content: center;
}

input [type=button] {
    margin: 3px 2px 3px 2px;
    padding: 0 8px;
    min-width: 100px;
    height: 29px;
    border: 1px solid #404040;
    background-color: #F5F5F5;
    color: #666;
    text-align: center;
    font-size: 11px;
    font-family: var(--mainfont);
    cursor: default;
}

.AssistantRow {
    font-weight: normal;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .AssistantRow:hover {
        background-color: #EAEAEA;
        font-weight: bold;
        text-decoration: underline;
        cursor: default;
    }


.ErrorHead {
    filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0, startColorStr=white, endColorStr=#ffe6e1);
}

.ErrorTitle {
    font-weight: bold;
    font-size: 13px;
    color: maroon;
    font-family: var(--mainfont);
    height: 13px;
    background-color: Transparent;
}

.ErrorBg {
    border: #cc0033 1px solid;
    font-weight: bold;
    vertical-align: middle;
    font-family: var(--mainfont);
    height: 25px;
    background-color: #ffe6e1;
    width: 100%;
}

.ErrorItem {
    /* font-size: 10px; */
    color: #696969;
    font-family: var(--mainfont);
}

/* PAGE INSTRUCTIONS HEADER ------------------------------------------------------------------------------------- */
.Instruction_Header {
    filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0, startColorStr=white, endColorStr=#FFF2E0);
}

.Instruction_Title {
    font-weight: bold;
    font-size: 11px;
    color: #FF8000;
    font-family: var(--mainfont);
    height: 13px;
    background-color: Transparent;
}

.Instruction_BackGround {
    border: #FFB950 1px solid;
    font-weight: bold;
    font-size: 11px;
    vertical-align: middle;
    font-family: var(--mainfont);
    height: 25px;
    background-color: #FFF2E0;
}

.Instruction_Items {
    font-size: 10px;
    color: #FF8000;
    font-family: var(--mainfont);
}
/* - GRID------------------------------------------------------------------------------------------------- */
.Grid {
    border-color: #dedede;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    color: #333;
    background-color: #fff;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 11px;
    line-height: 1.42857143;
    cursor: default;
    width: 100%;
}

.GridHeader {
    background-color: var(--header);
    color: white;
    padding: 10px 13px 9px 13px !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    font-family: var(--mainfont);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

    .GridHeader:hover {
        background-color: var(--subheader1); /* Change color on hover for interactivity */
    }

.GridHeaderLight {
    background-color: var(--header); /* #25a0da;*/
    color: white;
    font-size: 11px;
    text-align: left;
    font-family: var(--mainfont);
    height: 25px;
    transition: background-color 0.3s ease;
}

    .GridHeaderLight:hover {
        background-color: var(--subheader1); /* Change color on hover for interactivity */
    }

.SectionHeaderLightGray {
    border: 1px solid #999999;
    padding: 5px;
    background-color: #CCCCCC;
    font-size: 12px;
    text-align: left;
    font-family: var(--mainfont);
    color: #000000;
    height: 25px;
}

.sectionTitle {
    margin-top: 15px;
    height: 20px;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 15px;
    border-bottom: 1px solid lightgray;
}


.EmpInfoHeader {
    background-color: var(--subheader1);
    font-size: 13px;
    text-align: left;
    font-family: var(--mainfont);
    color: white;
    height: 36px;
    border-style: none;
}

.GridHeaderText {
    color: #FFFFFF;
    font-family: var(--mainfont);
    font-size: 11px;
}

.GroupByText {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: bold;
    padding-right: 5px;
    background-color: #8A8A8A;
}

.HeadingRow {
    background-color: var(--header); /* #25a0da;*/ /* #8A8A8A; */
}

.HeadingRowLight {
    background-color: #8A8A8A;
}

.HeadingCell {
    padding: 3px;
    padding-top: 2px;
    padding-bottom: 1px;
}

.HeadingRow td.FirstHeadingCell {
    background-image: url(../images/header1stCell_bg.gif);
}

.HeadingCellText {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: bold;
    text-align: left;
    padding-top: 3px;
    padding-bottom: 5px;
    color: #FFFFFF;
}

.Hover {
    font-family: var(--mainfont);
    font-size: 11px;
    color: Black;
    background-color: #B7B7B7;
    height: 25px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

.Row {
    background-color: #FFFFFF;
    font-family: var(--mainfont);
    font-size: 11px;
    height: 25px;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
}

    .Row td.DataCell {
        cursor: default;
        font-family: var(--mainfont);
        font-size: 11px;
        height: 25px;
        border-bottom: 1px solid gray;
        border-top: 1px solid gray;
    }

.SortedDataCell {
    background-color: #C0C0C0;
}


.Row td.LastDataCell {
    background-color: #EFEFF4;
}

.DataCellAlternate {
    font-family: var(--mainfont);
    font-size: 11px;
    background-color: #E6E6E6;
    color: Black;
    height: 25px;
    border-bottom: 1px solid gray;
}

.SelectedRow {
    background-color: #707070;
    color: white;
    height: 25px;
}

    .SelectedRow td.DataCell {
        font-family: var(--mainfont);
        font-size: 11px;
        background-color: #707070;
        color: white;
        border-bottom: 1px solid gray;
    }

    .SelectedRow td.FirstDataCell {
        background-color: #707070;
        color: white;
    }

    .SelectedRow td.LastDataCell {
        background-color: #707070;
        color: white;
    }

.GroupHeading {
    color: Black;
    background-color: #FFFFFF;
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: bold;
    border-bottom: 2px solid #A5A4BD;
    padding-top: 10px;
    padding-bottom: 3px;
}

.SliderPopup {
    border-style: solid;
    border-width: 1px;
    border-color: #9495A2 #000000 #000000 #9495A2;
    background-color: #F3F3F3;
    width: 288px;
    height: 60px;
}

.GridFooter {
    cursor: default;
    color: black;
    padding: 5px;
    background-color: #F3F3F3;
    height: 30px;
    font-weight: bold;
}

.GridFooterText {
    color: #000000;
    font-family: var(--mainfont);
    font-size: 11px;
}


.SearchText {
    color: #FFFFFF;
    font-family: var(--mainfont);
    font-size: 11px;
}

.SearchBox {
    font-family: var(--mainfont);
    font-size: 11px;
    text-decoration: none;
    width: 250px;
}

.ItemStyle {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #404040;
    vertical-align: middle;
    height: 30px;
    background-color: white;
    padding: 10px;
}

    .ItemStyle:hover {
        color: black;
        background-color: #C5C5C5 !important;
    }

.Alternate {
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #404040;
    vertical-align: middle;
    height: 30px;
    background-color: #f9f9f9;
}

    .Alternate:hover {
        color: black;
        background-color: #C5C5C5 !important;
    }


/* MESSAGE DIALOGUE CONTROL ------------------------------------------------------------------------------------- */

.msgHeadBg {
    border: #404040 1px solid;
    font-weight: bold;
    font-size: 12px;
    vertical-align: middle;
    font-family: var(--mainfont);
    height: 25px;
    background-color: #EFEFEF;
}

.msgItem {
    font-size: 11px;
    font-family: var(--mainfont);
    font-weight: normal;
    color: #000000;
}

/* HELP DIALOGUE CONTROL ------------------------------------------------------------------------------------- */
.Help_Header_Label {
    font-weight: bold;
    font-size: 11px;
    color: #003399;
    font-family: Verdana;
    height: 12px;
}

.Help_Header_Background {
    border: navy 1px solid;
    font-weight: bold;
    font-size: 11px;
    vertical-align: middle;
    font-family: var(--mainfont);
    height: 25px;
    background-color: #EAEAEA;
    border-color: #333333;
}

.Help_Items {
    font-size: 11px;
    color: #000000;
    font-family: var(--mainfont);
}

.HelpImageButton {
    filter: "";
    border: none;
}

.tbShadowRight {
    background-color: #DCDCDC;
    -ms-FILTER: progid:DXImageTransform.Microsoft.Alpha( style=1,opacity=75,finishOpacity=0,startX=0,finishX=100,startY=0,finishY=0);
    /*-webkit-FILTER: progid:DXImageTransform.Microsoft.Alpha( style=1,opacity=75,finishOpacity=0,startX=0,finishX=100,startY=0,finishY=0);*/
    FILTER: progid:DXImageTransform.Microsoft.Alpha( style=1,opacity=75,finishOpacity=0,startX=0,finishX=100,startY=0,finishY=0);
    width: 1px;
}

.tbShadowBottom {
    font-size: 4px;
    filter: progid:DXImageTransform.Microsoft.Alpha( style=1,opacity=75,finishOpacity=0,startX=100,finishX=100,startY=0,finishY=100);
    background-color: #DCDCDC;
}

.Shadow {
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='silver', Positive='true');
}

.ShadowFade {
    background-color: White;
    font-size: 6px;
    height: 4px;
    filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=0, startColorStr=#DCDCDC, endColorStr=white);
}

/* -------------------------------------------------------------------------------------------------------------- */
/** CALENDAR STYLES **********************************/
.picker {
    background-color: #FFFFFF;
    color: #404040;
    border: 1px gray solid;
    font-size: 11px;
    font-family: var(--mainfont);
    padding: 2px;
    cursor: pointer;
    width: 120px;
}

.calendar_button {
    border: none;
    cursor: pointer;
}

.calendar td {
    font-size: 11px;
}

.title {
    font-weight: bold;
    background-color: #D7D7E5;
}

.day {
    width: 25px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #F6F6F6;
}

.dayhover {
    width: 25px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
    border: 1px solid #F6F6F6;
}

.dayheader {
    width: 25px;
    text-align: center;
    border: 1px solid white;
    font-weight: bold;
    background-color: #FFFFFF;
}

.othermonthday {
    color: #999999;
}

.selectedday {
    width: 25px;
    background-color: #FBE694;
    color: #000000;
    border: 1px solid #BB5503 !important;
    font-weight: bold;
}

.calendar {
    border: 1px solid #FFFFFF;
    border-color: Black;
    border-collapse: collapse;
    cursor: default;
}

.month {
    background-color: #F6F6F6;
    margin: 0 5px 5px 5px;
}

.nextprev {
    cursor: pointer;
    height: 25px;
    vertical-align: middle;
    padding: 0 5px 0 5px;
}

.editor_frame {
    width: 99%;
    height: 99%;
    border: 1px solid #404040;
    background-color: White;
    margin-right: 20px;
    margin-bottom: 30px;
}


.editor_frame_container {
    padding: 10px;
    position: absolute;
    z-index: 999;
    width: 99%;
    height: 90%;
    top: 0;
    left: 0;
    border: 1px solid #797979;
    background-color: #333333;
    text-align: left;
    vertical-align: middle;
}


.editor_frame_container_message {
    padding: 10px;
    position: absolute;
    z-index: 999;
    width: 99%;
    height: 90%;
    top: 0;
    left: 0;
    border: 1px solid #797979;
    background-color: #333333;
    text-align: left;
    vertical-align: middle;
}

.editor_frame_container_message_std {
    padding: 10px;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    border: 1px solid #797979;
    background-color: white;
    text-align: left;
    vertical-align: middle;
}

.editor_button_bar {
    /* background-color: #C0C0C0;
    border: 1px solid #404040; */
}

.detail_screen_table {
    width: 100%;
}

/* .detail_screen_table tr {
    line-height: 35px;
}  */

.TreeView {
    background-color: white;
    cursor: pointer;
    font-family: var(--mainfont);
    font-size: 10px;
    font-weight: normal;
    color: #404040;
}

.TreeNode {
    font-family: var(--mainfont);
    font-size: 10px;
    font-weight: normal;
    Color: #404040;
    padding-left: 1px;
    cursor: pointer;
}

.GrayedTreeNode {
    font-family: var(--mainfont);
    font-size: 11px;
    color: gray;
    cursor: default;
}

.RedNode {
    font-family: var(--mainfont);
    font-size: 11px;
    color: red;
}

.BlueNode {
    font-family: var(--mainfont);
    font-size: 11px;
    color: blue;
}

.GreenNode {
    font-family: var(--mainfont);
    font-size: 11px;
    color: green;
}

.HoverTreeNode {
    font-family: var(--mainfont);
    font-size: 11px;
    text-decoration: underline;
    padding: 2px 3px 1px 3px;
    cursor: pointer;
}

.SelectedTreeNode {
    font-family: var(--mainfont);
    font-size: 11px;
    background-color: gray;
    color: white;
    padding: 2px 3px 1px 3px;
    cursor: pointer;
}

.NodeEdit {
    border: 1px gray solid;
    font-family: var(--mainfont);
    font-size: 11px;
}

.hrf_assistant_sub_menu_item {
    font-family: var(--mainfont);
    font-size: 12px;
    font-weight: normal;
    color: #404040;
    text-align: left;
    vertical-align: middle;
    padding: 3px;
}

    .hrf_assistant_sub_menu_item:hover {
        font-family: var(--mainfont);
        font-size: 12px;
        color: #404040;
        text-align: left;
        vertical-align: middle;
        padding: 3px;
        background-color: #EAEAEA;
        font-weight: bold;
        text-decoration: underline;
        cursor: default;
    }

.widthFull {
    width: 100%;
}

.width50 {
    width: 50px;
}

.width100 {
    width: 100px;
}

.width200 {
    width: 200px;
}

.width300 {
    width: 300px;
}

.width400 {
    width: 400px;
}

.width700 {
    width: 700px;
}

.ctrlRequired {
    border: firebrick 1px dotted !important;
    background-color: #FFE4E1 !important;
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #404040 !important;
}

.datePickerRequired {
    border: firebrick 1px dotted;
    background-color: #FFE4E1;
    font-family: var(--mainfont);
    font-size: 11px;
    font-weight: normal;
    color: #404040 !important;
    padding-left: 2px;
    padding-top: 5px;
    padding-right: 2px;
    padding-bottom: 5px;
}

.labelRequired {
    font-weight: bold;
    color: #FF0000 !important;
}

.pageTitle {
    font-weight: bold;
    font-size: 12px;
    font-family: var(--mainfont);
}

.pageInstructions {
    font-size: 11px;
    font-family: var(--mainfont);
    color: Gray;
}

.reContentArea /*this selector corresponds to the content area element when RadEditor is in DIV mode*/ {
    font-family: var(--mainfont);
    font-family: Century Gothic !important;
    font-size: 11px !important;
    text-align: left !important;
    word-wrap: break-word !important;
    /*padding: 1px 15px 3px 15px !important;*/
}

    .reContentArea P {
        margin: 0;
        border: 1px solid #666;
        color: #666;
        font-size: 12px;
        padding: 10px;
    }

    .reContentArea H1 {
        margin: 0;
        border: 1px solid #666;
        color: #000;
        padding: 20px;
    }

    .reContentArea OL {
        margin-top: 20px;
        list-style-type: lower-roman;
        border: 1px solid #666;
        color: #555;
        padding: 10px 10px 10px 55px;
    }

    .reContentArea table {
        BORDER-RIGHT: #99ff99 1px dashed;
        BORDER-BOTTOM: #99ff99 1px dashed;
        width: 100%;
        margin-top: 20px;
    }

        .reContentArea table td {
            font-size: 12px !important;
            color: #555;
            PADDING: 1px;
            BORDER-TOP: #99ff99 1px dashed;
            BORDER-LEFT: #99ff99 1px dashed;
            text-align: center;
        }

    .reContentArea img {
        margin: 1px 1px 1px 1px;
        border: solid 1px blue;
    }

/* -------------------------------------------------------------------------------------------------------------- */

/** REPORT PORTAL STYLES **********************************/
/* TEXTAREA {
    font-family:  var(--mainfont);
    font-size: 11px;
} */
/* Common Styles for Text Inputs and Textarea */
INPUT[type="text"],
TEXTAREA {
    font-family: var(--mainfont);
    font-size: 12px; /* Improved readability */
    padding: 4px 4px;
    margin: 1px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    /*width: 100%;*/ /* Full width by default */
    transition: all 0.3s ease;
}

/* Specific Styling for Textarea */
TEXTAREA {
    resize: vertical; /* Allows vertical resizing only */
    min-height: 80px; /* Ensures usability */
}

    /* Hover & Focus Effects */
    INPUT[type="text"]:hover, INPUT[type="text"]:focus,
    TEXTAREA:hover, TEXTAREA:focus {
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
        outline: none;
    }


SELECT {
    font-family: var(--mainfont);
    font-size: 12px; /* Improved readability */
    padding: 4px 4px; /* Better spacing */
    margin: 1px;
    border: 1px solid #ccc;
    border-radius: 4px; /* Smooth edges */
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

    /* Hover & Focus Effects */
    SELECT:hover,
    SELECT:focus {
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

/* SELECT {
    font-family:  var(--mainfont);
    font-size: 11px;
} */

H1, H2, H3, H4, H5, TH, THEAD, TFOOT {
    font-family: var(--mainfont);
    color: #003366;
    font-style: normal;
    text-decoration: none;
    word-spacing: normal;
    letter-spacing: normal;
    text-transform: none;
}

H1, H2, H5, DT, H6 {
    font-weight: 700;
}

H3, H4 {
    font-weight: 500;
}

H1 {
    font-size: 16px;
}

H2 {
    font-size: 1.75em;
}

H3 {
    font-size: 1.58em;
}

H4 {
    font-size: 1.33em;
}

H5, DT {
    font-size: 1em;
}

H6 {
    font-size: .8em;
}


.THeader {
    height: 25px;
    background-color: White;
    /*background-image: url(../IMAGES/BackGrounds/TH_BG.png);*/
    border: solid 1px silver;
    padding: 2px;
}

SMALL {
    font-size: .7em;
}

BIG {
    font-size: 1.17em;
}

BLOCKQUOTE, PRE {
    font-family: Courier New, monospace;
}
/* Telerik Treeview --------------------------------------------------------------------------------------------- */
.RadTreeView .rtImg {
    width: 16px !important;
    height: 16px !important;
}

/* -------------------------------------------------------------------------------------------------------------- */

.RadComboBox_Bootstrap .rcbInput {
    font-size: 12px !important;
}

.RadComboBoxDropDown_Bootstrap {
    font-size: 12px !important;
    font-family: var(--mainfont) !important;
}

.RadButton_Bootstrap.rbPrimaryButton {
    height: 36px !important;
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    transition: background-color 0.3s ease !important;
}

    .RadButton_Bootstrap.rbPrimaryButton:hover {
        background-color: var(--accent) !important; /* Slightly darker shade on hover */
    }

.RadGrid .rgFilterBox {
    height: 30px !important;
}

.RadInput_Bootstrap .riTextBox.riEmpty, html body .RadInput_Empty_Bootstrap {
    font-size: 12px !important;
}

.RadTabStrip .rtsLink {
    font-size: 13px !important;
}

/* .RadUpload_Bootstrap .ruStyled .ruFakeInput {
    width: 53% !important;
}
.RadUpload_Bootstrap .ruStyled .ruFakeInput:hover {
    background-color: var(--accent) !important; /* Slightly darker shade on hover */
/*} */

.RadUpload .ruFakeInput {
    width: auto !important;
    min-width: 90px !important;
}

.ruFileWrap {
    padding-bottom: 2px !important;
}

.rgFilterBox {
    border-width: 1px;
    border-style: solid;
    margin: 0;
    height: 20px !important;
    padding: 2px 1px 3px;
    font-size: 12px;
    vertical-align: middle;
}

div#preload {
    display: none;
}

.popupdiv {
    z-index: 300;
    left: 40px;
    position: absolute;
    top: 40px;
    margin: 10px;
    border: 1px solid #333333;
    background-color: #E3E3E3 !important;
    box-shadow: rgba(0,0,0,0.5) 0 0 35px;
}

.editor_panel {
    box-shadow: rgba(0, 0, 0, 0.1) 0 6px 15px, rgba(0, 0, 0, 0.1) 0 1px 5px;
    position: absolute;
    z-index: 999 !important;
    top: 40px;
    left: 14px;
    right: 14px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 16px;
    max-height: 90vh; /* Keep panel responsive */
    overflow-y: auto; /* Allow scroll if content overflows */
}
    
    /* Add hover effect for interactivity */
    .editor_panel:hover {
        box-shadow: rgba(0, 0, 0, 0.1) 0 8px 25px, rgba(0, 0, 0, 0.1) 0 2px 10px;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .editor_panel table {
        border-collapse: separate; /* Allows custom spacing between cells */
        border-spacing: 2px; /* Adds space between table rows and cells */
    }

    .editor_panel th, .editor_panel td {
        padding: 2px 6px; /* Adds padding inside the cells */
        text-align: left; /* Ensures the text is aligned to the left */
        vertical-align: middle; /* Ensures text is vertically centered */
    }

.editor_panel_heading {
    font-size: 12px;
    font-weight: bold;
}

/* .editor_panel {
    box-shadow: rgba(0,0,0,0.5) 0 0 35px;
    position: absolute;
    z-index: 999 !important;
    top: 40px;
    left: 14px;
    right: 14px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
} */

.pd_editor_panel {
    top: 170px !important;
}

.RoundTop {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
}

.oldMonthTitleBar {
    display: none;
}

.RadListBox span.rlbText em {
    background-color: #E5E5E5;
    font-weight: bold;
    font-style: normal;
}


.PleaseWait_FullDiv {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(84,84,84,0.8);
    padding: 0px;
    margin: 0px;
    display: flex;
    top: 0px;
    left: 0px;
}

.PleaseWait_FullTable {
    border: 1px solid var(--header); /* #25a0da;*/
    background-color: #FFFFFF;
    box-shadow: rgba(84,84,84,0.5) 0 0 15px;
    width: 350px;
    margin: 15% auto;
    vertical-align: middle;
}


.tmrDivNormal {
    border-color: #B0BBC9;
    border-width: 1px;
    border-style: solid;
    height: 32px;
}

.tmrTableNormal {
    height: 32px;
    padding: 0;
    width: 100%
}

.tmrRowNormal {
    height: 32px;
    text-align: left;
    background-color: var(--header); /* #25a0da;*/
    font-size: 15px;
    text-align: center;
    font-family: var(--mainfont);
    color: white;
    height: 30px;
}

.tmrColNormal {
    border: 0;
    padding-left: 10px;
    vertical-align: middle;
    text-align: left;
}

.tmrLabelNormal {
    background-color: var(--header); /* #25a0da;*/
    font-size: 15px;
    text-align: center;
    height: 30px;
    font-family: var(--mainfont);
    font-weight: normal;
    color: white;
}

.line {
    width: 100%;
    border-bottom: solid 1px lightgray;
    height: 2px
}


.rgPagerTextBox {
    min-width: 40px !important;
    height: 30px !important;
}

.DashboardImage {
    border: 0;
    height: 42px;
}

.DashboardImageDisabled {
    color: dimgray !important;
    height: 24px;
}

.DashboardImageSmall {
    border: 0;
    height: 16px;
}

.BirthDayPhoto {
    border: 0;
    height: 22px;
    cursor: pointer;
}

/*.BirthDayPhoto:hover {
        position: absolute;
        height: 256px;
        border: 1px solid;
        border: 1px solid rgba(0, 0, 0, 0.1);
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        box-shadow: rgba(0,0,0,0.5) 0 0 35px;
    }*/


.RadWindow_Metro table.rwTitlebarControls em {
    text-transform: none !important;
}

.SCREEN_PROPERTIES_LINK_IMG {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    right: auto;
}

.PageControlContainer {
    position: absolute;
    z-index: 100;
    top: 0px;
    right: 20px;
}

.PageControlContainerNavButton {
}

.PageControlMainMenuItems {
    border: 0px solid rgb(0, 120, 215);
    border-image: none;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.5);
    background-color: white;
}

.PageControlSumMenuItems {
    position: absolute;
    z-index: 101;
    top: 35px;
    right: 50px;
    border: 0px solid rgb(0, 120, 215);
    border-image: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.5);
    background-color: white;
}

.EmpHoldingStatus {
    border: 1px solid rgba(148, 49, 47, 0.2);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: orangered;
    padding: 2px;
}

.hline {
    border-width: 0px;
    border-bottom: 1px solid silver;
}

/* Telerik switch*/
.k-switch-handle {
    height: 20px !important;
}

.RadButton.RadSwitch.elasticSwitch .k-switch-handle {
    width: 2em !important;
    height: 20px !important;
}

.RadButton.RadSwitch.k-switch-on.elasticSwitch .k-switch-handle {
    left: calc( 100% - 2em) !important;
    height: 20px !important;
}

.RadButton.RadSwitch.elasticSwitch,
.RadButton.RadSwitch.elasticSwitch .k-switch-container {
    width: 5em !important;
    height: 20px !important;
}

.RadButton_Bootstrap .k-switch-handle {
    height: 20px !important;
}

/* Fix Grid pager x of x min width */
div.NextPrevNumericAndAdvanced > div.rgWrap.rgAdvPart > div.RadInput.RadInput_Bootstrap {
    width: min-content !important;
}

.RadComboBoxDropDown .rcbScroll {
    height: 100%;
    border-color: inherit;
    position: relative;
    overflow: auto;
    background-color: white;
}

.note_item {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.note_header_row {
    background-color: var(--header); /* #25a0da;*/
    color: white;
}

.note_type_col {
    width: 25px;
    vertical-align: central;
    text-align: center;
    font-size: 12px;
}

.note_header_col {
    font-weight: bold;
    font-size: 12px;
}

.note_header {
    font-weight: bold;
}

.note_expired {
    color: orange;
}

.note_archived {
    color: red;
}

.note_memo {
    color: black;
}

.note_by {
    font-style: italic;
    float: right;
}

.note_edit_lnk {
    color: green;
}

.note_delete_lnk {
    color: red;
}

.note_add_link {
    float: right;
}

.note_document_header {
    color: gainsboro;
    padding: 10px;
}


.RadTabStrip_BlackMetroTouch .rtsLevel1 .rtsLink {
    border-color: var(--subheader1) !important;
    color: var(--tabColor) !important;
    background-color: var(--subheader1) !important;
}

    .RadTabStrip_BlackMetroTouch .rtsLevel1 .rtsLink:hover {
        background-color: var(--tabHover) !important;
    }

.RadTabStrip_BlackMetroTouch .rtsLevel1 .rtsSelected .rtsLink {
    border-color: #0f485b !important;
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadTabStrip_BlackMetroTouch .rtsLevel1 {
    border-color: var(--header) !important;
}

    .RadTabStrip_BlackMetroTouch .rtsLevel1 ~ .rtsLevel .rtsLink {
        padding: 4px 8px !important;
    }


.RadTabStrip_Metro .rtsLevel1 .rtsLink {
    border-color: var(--subheader1) !important;
    color: var(--tabColor) !important;
    background-color: var(--subheader1) !important;
}

.RadTabStrip_Metro .rtsLevel1 .rtsSelected .rtsLink {
    border-color: #0f485b !important;
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadTabStrip_BlackMetroTouch .rtsLevel1 .rtsSelected {
    border-color: #0f485b !important;
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadTabStrip_BlackMetroTouch .rtsLevel1:hover {
    background-color: var(--tabHover) !important;
}

.RadTabStrip_Metro .rtsLevel1 {
    border-color: var(--header) !important;
}

    .RadTabStrip_Metro .rtsLevel1 ~ .rtsLevel .rtsLink {
        padding: 4px 8px !important;
    }

.RadButton_Metro.rbPrimaryButton {
    border-color: var(--header) !important;
    background-color: var(--header) !important;
    border-radius: 5px !important;
}


.RadTabStrip .rtsLink {
    padding: 5px 15px !important;
}

.RadGrid_Bootstrap .rgRow, .RadGrid_Bootstrap .rgAltRow, .RadGrid_Bootstrap .rgEditRow, .RadGrid_Bootstrap .rgFooter, .RadGrid_Bootstrap .rgGroupHeader {
    height: calc(1.42857143em + 12px) !important;
}

.RadScheduler_Metro .rsSelected > .rsButton {
    border-color: var(--subheader1) !important;
    background-color: var(--subheader1) !important;
}

.RadPanelBar_Metro .rpRootLink.rpSelected {
    border-color: var(--subheader2) !important;
    background-color: var(--subheader2) !important;
}

.RadPanelBar_Metro .rpGroup .rpLink.rpHovered {
    color: black !important;
}

.RadPanelBar .rpGroup a.rpLink:hover {
    background-color: var(--assistantBackground) !important;
    color: black !important;
}

.rwTitleBar {
    background: var(--header) !important;
}

.dataGroup {
    background-color: var(--assistantBackground) !important;
}

.dvDashbaord:hover {
    background-color: var(--subheader1) !important;
}

.dvDashbaord {
    background-color: var(--subheader2) !important;
}

.RadButton_Material.k-switch-on .k-switch-container {
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadButton_Silk.k-switch-on .k-switch-container {
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadGrid_Bootstrap .rgPagerCell .rgNumPart a.rgCurrentPage {
    border-color: var(--header) !important;
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
    height: 16px !important;
    line-height: 16px !important;
}

.RadGrid_Bootstrap .rgPagerCell .rgNumPart a, .RadGrid_Bootstrap .rgPagerCell .rgActionButton {
    min-height: 16px !important;
    height: 17px !important;
}

.RadGrid .rgPagerCell .rgPagerButton {
    min-height: 16px !important;
    height: 17px !important;
    line-height: 15px !important;
}

.RadPanelBar .rpText {
    padding-top: 4px !important;
}

.RadPanelBar_Metro .rpGroup .rpLink.rpSelected {
    border-color: var(--header) !important;
    background-color: var(--subheader2) !important;
}

.RadPanelBar .rpGroup a.rpLink:hover {
    background-color: var(--assistantBackground) !important;
}

.RadWindow .rwTitleRow, .RadWindow .rwTitleRow * {
    box-sizing: content-box;
    background-color: var(--header) !important;
}

.RadWindow_Metro .rwControlButtons a {
    border: 0 !important;
}

.RadWindow_Bootstrap .rwTable .rwTitlebarControls em {
    color: var(--tabColor) !important;
}

.RadWindow_Bootstrap .rwTitleWrapper {
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.rwTitleWrapper {
    color: var(--tabColor) !important;
    background-color: var(--header) !important;
}

.RadWindow .rwIcon {
    display:none !important;
    /*margin-top: -7px !important;*/
}

/* New Lookup Style... */
.mainHeading {
    height: 32px;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 17px;
    border-bottom: 1px solid grey;
}

.projectIcon {
    background-color: #25a0da;
    min-width: 100px;
    height: 100px;
    font-size: 22px;
    margin-left: 50px;
    line-height: 100px;
    text-align: center;
    width: 150px;
}

.tableMain {
    border-collapse: separate;
    border-spacing: 0px;
    border: 0;
    width: 100%;
}

    .tableMain th, td {
        padding: 0px;
    }

.tableEditor {
    border-collapse: separate;
    border-spacing: 2px;
    border: 0;
    width: 100%;
    padding: 24px 0 0 22px;
}

    .tableEditor th {
        padding: 2px;
    }
