﻿/**********************************************************************
 * Styles.css                                                         *
 *                                                                    *
 * This file is initially empty and you can add any additional styles *
 * or modify any of the styles defined in BaseStyles.css              *
 * This file will never be overwritten.                               *
 *                                                                    *
 * For example, if you want to override just the top padding for a    *
 * menu, you can simply add the following lines:                      *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	}                                                             *
 *                                                                    *
 * This will keep all the other styles of the "menus" style as-is,    *
 * but modify the top padding to be 20px.                             *
 *                                                                    *
 * You can also, add a new style by just specifying it.               *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	text-align: center;                                           *
 * 	}                                                             *
 * 	                                                              *
 * In the above case, we added the text-align style.  This style was  *
 * not specified in the original declaration of the menus style.      *
 *                                                                    *
 **********************************************************************/

HTML { /* language direction flow of content on page */
    direction: ltr;
    margin: 0px;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/**********************************************************************
 * Page Background Styles                                             *
 **********************************************************************/
.pageBackground, .pBack { /* body */
    background-color: #e0ebf5;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    width: 100%;
}

.blank { /* blank master page content vertical offset */
    margin-top: 0px;
}

.pageC { /* page container center (contents of page container) */
    vertical-align: top;
    width: 100%;
}

.marginTR { /* page centering top right margin */
    display: none;
}

/**********************************************************************
 * Page Margin Styles                                                 *
 **********************************************************************/
.marginTL { /* page centering top left margin */
    display: none;
}

.marginTR { /* page centering top right margin */
    display: none;
}

.marginmL { /* page centering left margin (horizontal menu row) */
    display: none;
}

.marginmR { /* page centering right margin (horizontal menu row) */
    display: none;
}

.marginL { /* page centering left margin */
    display: none;
}

.marginR { /* page centering right margin */
    display: none;
}

.marginBL { /* page centering bottom left margin */
    display: none;
}

.marginBR { /* page centering bottom right margin */
    display: none;
}

/**********************************************************************
 * Page Center Styles                                                 *
 **********************************************************************/
.pcT { /* page container top center edge (header container) */
    background-color: #262a3f;
    height: 64px;
    left: 0px;
    position: fixed;
    top: 0px;
    vertical-align: bottom;
    width: 100%;
    z-index: 200;
}

.logoBG { /* inner header container */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.logoEmailBG { /* email inner header container */
    background-color: #607890;
    background-image: url(../../Images/logoCompanyName.png);
    background-position: left center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #b3ac95;
}

.pcmL { /* page container left middle edge (horizontal menu row) */
    background-color: #b3ac95;
    display: none;
}

.pcmC { /* page container center (horizontal menu container) */
    background-color: #b3ac95;
    left: 0px;
    position: fixed;
    top: 64px;
    width: 100%;
    z-index: 100;
}

.pcL { /* page container left middle edge (vertical menu container) */
    display: inline-block;
    padding-right: 6px;
    vertical-align: top;
}

.pcC { /* page container center (contents of page container) */
    padding-top: 10px;
    text-align: left;
    vertical-align: top;
    width: 100%;
}

.pcBL { /* page container bottom left edge */
    display: none;
}

.pcB { /* page container bottom center edge (footer container) */
    background-color: #607890;
    height: 30px;
    padding-left: 13px;
    padding-right: 13px;
    padding: 16px;
    vertical-align: top;
}

    .pcB table { /* footer container table */
        /*
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
	*/
        margin: auto;
    }

/**********************************************************************
 * Page Header Styles                                                 *
 **********************************************************************/
.pHeaderT { /* page header skip navigation link container */
    text-align: left;
}

.pHeaderL { /* page header left edge 
    background-image: url(../../Images/logoCompanyName.png);*/
    background-position: left center;
    background-repeat: no-repeat;
    height: 55px;
    position: absolute;
    top: 0px;
    width: 488px;
}

    .pHeaderL img {
        position: relative;
        left: 6px;
        top: 8px;
    }

.pHeaderC { /* page header logo container */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    vertical-align: bottom;
    width: 365px;
}

.pHeaderR { /* page header security panel container */
    text-align: right;
    vertical-align: bottom;
    width: 250px;
}

/**********************************************************************
 * Multi-level Menu Styles                                            *
 **********************************************************************/
.MLMmenuAlign { /* horizontal menu container alignment */
    background-color: #b3ac95;
    margin-left: auto;
    margin-right: auto;
    padding-left: 110px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 200;
}

.MLMmenu { /* horizontal menu container */
}

.MLMmC { /* horizontal menu item container */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 17px;
    height: 40px;
    padding-left: 8px;
    padding-right: 8px;
}

    .MLMmC a { /* horizontal menu item link text */
        color: #fafafa;
        text-decoration: none;
    }

.MLMmoC { /* horizontal menu item hover state */
    background-color: #dedcdc;
}

    .MLMmoC a, .MLMmoC a:hover { /* horizontal menu item hover state link text */
        color: #607890;
    }

.MLMmenusub { /* horizontal submenu container (menu leaves) */
    border: 1px solid #99937f;
}

.MLMsubmC { /* horizontal submenu item container */
    background-color: #b3ac95;
    font-size: 11px;
    padding: 6px;
    text-align: left;
}

    .MLMsubmC a { /* horizontal submenu item link text */
        color: #fafafa;
        cursor: pointer !important;
        font-family: Arial, Verdana, sans-serif;
        text-transform: uppercase;
    }

.MLMsubmoC { /* horizontal submenu item hover state */
    background-color: #dedcdc;
}

    .MLMsubmoC a { /* horizontal submenu item hover state link text */
        color: #607890;
    }

.MLMmbbg { /* horizontal menu bottom trim */
    display: none;
}

.MLMmenuVAlign { /* vertical menu container alignment 
	background-color: #b3ac95;*/
}

.MLMmenuV {
    /*border-radius: 4px;*/
    background-color: #ffffff;
    /*padding-right: 4px;*/
}

.MLMmvC { /* vertical menu item container */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 17px;
    padding: 8px;
}

    .MLMmvC a { /* vertical menu item link text */
        color: #fafafa;
        text-decoration: none;
    }

.MLMmvoC { /* vertical menu item hover state */
    background-color: #dedcdc;
}

    .MLMmvoC a, .MLMmvoC a:hover { /* vertical menu item hover state link text */
        color: #607890;
    }

.MLMmenuVsub { /* vertical submenu container (menu leaves) */
    border: 1px solid #99937f;
}

.MLMsubmvC { /* vertical submenu item container */
    background-color: #b3ac95;
    font-size: 11px;
    padding: 6px;
    text-align: left;
}

    .MLMsubmvC a { /* vertical submenu item link text */
        color: #fafafa;
        cursor: pointer !important;
        font-family: Arial, Verdana, sans-serif;
        text-transform: uppercase;
    }

.MLMsubmvoC { /* vertical submenu item hover state */
    background-color: #ede8e8;
}

    .MLMsubmvoC a { /* vertical submenu item hover state link text */
        color: #607890;
    }

/**********************************************************************
 * Footer Styles                                            	      *
 **********************************************************************/
.footer { /* footer content */
    color: #c5c7c9;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 13px;
    padding-top: 2px;
    text-transform: none;
    vertical-align: top;
    white-space: nowrap;
    width: 200px;
}

.dialog_view, .dv, .panelC { /* panel container (includes panel header) */
    box-shadow: 0px 0px 2px #666666;
    margin-bottom: 10px;
    /*
    margin-left: auto;
    margin-right: auto;
    */
    text-align: left;
    vertical-align: top;
    width: auto;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

div.fixedHeaderBackground { /* wrapper of fixed header and scroll region */
    background-color: #d7d7d7; /*#fefefe; echo background color of thc */
    position: relative;
}


.buttonPadding { /* page buttons padding */
    padding-right: 6px;
}

.floatContainer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}



input:disabled,
button:disabled,
select:disabled,
textarea:disabled,
a:disabled,
themebutton:disabled {
    background-color: #f0f0f0;
    color: #999999;
    cursor: not-allowed;
    border: 1px solid #cccccc;
    opacity: 0.6;
}
.inactiveControl{
    background-color: #f0f0f0;
    color: #999999;
    cursor: not-allowed;
    border: 1px solid #cccccc;
    opacity: 0.6;
}

.printDv{ /* panel container (includes panel header) */
	-moz-border-radius: 0px;
	-moz-box-shadow: 0px 0px 0px #bbbbbb;
	-webkit-border-radius: 0px;
	-webkit-box-shadow: 0px 0px 0px #bbbbbb;
	background-color: #ffffff;
	border-radius: 0px;
	box-shadow: 0px 0px 0px #bbbbbb;
	margin-bottom: 10px;
	padding-bottom: 2px;
	text-align: left;
	vertical-align: top;
	width: auto;
	}

.dialog_body, .dBody {
    color: #555555;
    padding: 5px;
    /* text-align: left; */
}

.pageBackground, .nopBack { /* body */
	background-color: #ffffff;
	margin: 0px;
	width: 100%;
	}
.field_input_m, .fi_m {
   background-color: #f8f9fa;  /* Lighter background for modern look */
    border: 1px solid #ced4da;   /* Softer gray for the border */
    border-radius: 0.375rem;     /* Rounded corners (6px), similar to Tailwind */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Light shadow for depth */
    color: #495057;  /* Dark gray text color */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.75rem;  /* Modern readable font size (16px) */
    padding: 0.5rem 0.5rem;  /* Padding for input: vertical 8px, horizontal 16px */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transitions for hover/focus */
}

.field_input:focus, .fi:focus {
    border-color: #80bdff; /* Light blue border on focus (Bootstrap-style) */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25); /* Slight blue glow on focus */
    outline: none;  /* Remove default browser outline */
    }
/* Refactored input field styles for a more modern, clean look */
.field_input, .fi {
    background-color: #ede8e8; /* Light gray background for modern look */
    border: 1px solid #99937f; /*Soft gray border */
    border-radius: 0.375rem; /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    color: #495057; /* Dark gray text color */
    /*  font-family: 'Segoe UI', Arial, sans-serif;   Modern font family */
    font-size: 0.85rem; /* Readable font size (16px) */
    padding: 0.35rem 0.75rem; /* Padding for spacing */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transition */
}
.field_input:hover { /* input textbox hover state */
	border: 1px solid #99937f;    /*Soft gray border */
    border-radius: 0.375rem;     /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
	}
.field_input:focus, .fi:focus {
    background-color: #fff6eb;
    border-color: #ffce8a;  /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);  /* Slight glow on focus */
    outline: none;  /* Remove default outline */
}

.field_input_currency, .fi_currency {
    background-color: #ede8e8; /* Light gray background for modern look */
    border: 1px solid #99937f;
    border-radius: 0.375rem; /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    color: #495057; /* Dark gray text color */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.85rem; /* Readable font size (16px) */
    text-align: right;
    padding: 0.35rem 0.75rem; /* Padding for spacing */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transition */
}
.field_input_currency:hover, .fi_currency:hover {
   border: 1px solid #99937f;    /*Soft gray border */
    border-radius: 0.375rem;     /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
}

.field_input_currency:focus, .fi_currency:focus {
    background-color: #fff6eb;
    border-color: #ffce8a;   /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);  /* Slight glow on focus */
    outline: none;  /* Remove default outline */
}

.field_input_small, .fi_small {
    background-color: #ede8e8; /* Light gray background for modern look */
    border: 1px solid #99937f; /*Soft gray border */
    border-radius: 0.375rem; /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    color: #495057; /* Dark gray text color */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.7rem; /* Readable font size (16px) */
    padding: 0.3rem 0.5rem; /* Padding for spacing */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth transition */
}
.field_input_small:hover, fi_small:hover { /* input textbox hover state */
	border: 1px solid #99937f;    /*Soft gray border */
    border-radius: 0.375rem;     /* Slightly rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
	}
.field_input_small:focus, fi_small:focus {
    background-color: #fff6eb;
    border-color: #ffce8a;  /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);  /* Slight glow on focus */
    outline: none;  /* Remove default outline */
}

.field_input_blank, .fi_blank {
     /* Light gray background for modern look */
    border: none; /* solid #99937f;    /*Soft gray border */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.8rem;  /* Readable font size (16px) */
    padding: 0.3rem 0.5rem;  /* Padding for spacing */
    outline: none;
}
.field_input_blank:focus, .fi_blank:focus {
    
    border: none; /* solid #99937f;    /*Soft gray border */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.8rem;  /* Readable font size (16px) */
    padding: 0.3rem 0.5rem;  /* Padding for spacing */
    outline: none;
}

.field_input_watermark, .fi_small_wm {
    background-color: #ede8e8;  /* Light gray background for modern look */
    border: 1px solid #99937f;    /*Soft gray border */
    border-radius: 0.375rem;     /* Slightly rounded corners */
    color: #99937f;  /* Dark gray text color */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.8rem;  /* Readable font size (16px) */
    padding: 0.35rem 0.75rem;/* Padding for spacing */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;  /* Smooth transition */
}

/* Refactored search box styles */
/*.Search_Input, .si {
    border: 1px solid #ced4da;  
    border-radius: 0.375rem; 
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 
    color: #495057; 
    font-family: 'Segoe UI', Arial, sans-serif;  
    font-size: 0.875rem; 
    padding: 0.5rem;  
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}*/



.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}


/* .themeButton */
.themeButton {
    border-radius:4px;
    padding: 0.5rem 1rem 0.5rem 1rem;  /* Reduced padding */
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    height: 1rem; 
    line-height: normal;  /* No line-height to prevent vertical shifting */
    text-align: center;
    text-shadow:none;
}

/* Hover state for .themeButton */
.themeButton:hover {
   
}
.themeButton:hover a.button_link{
      
    color: #495057;
}

.themeButtonMini a.button_link, .themeButtonMini a.button_link:hover, .themeButtonMini a, .themeButtonMini a:hover { /* link within small theme button */
    color: #495057;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

/* .button_link */
a.button_link,
.bC a.button_link,
.buttonPadding a.button_link,
.dBody a.button_link,
.galleryttc a.button_link,
.popupTableCellValue a.button_link,
.tableCellValue a.button_link,
.thc a.button_link,
.tic a.button_link,
.ttc a.button_link {
    font-size: .8rem;  /* 12pt equivalent */
    font-weight: bold;
   
      /* White text */
    text-decoration: none;  /* No underline initially 
    display: inline-block;*/
    height: 1rem;  
    text-align: center;
   /* transition: color 0.2s ease, background-color 0.2s ease, text-decoration 0.2s ease;
    cursor: pointer;
    border-bottom: 2px solid transparent;   Border for hover effect */
}

/* Hover state for .button_link */
a.button_link:hover,
.bC a.button_link:hover,
.buttonPadding a.button_link:hover,
.dBody a.button_link:hover,
.galleryttc a.button_link:hover,
.popupTableCellValue a.button_link:hover,
.tableCellValue a.button_link:hover,
.thc a.button_link:hover,
.tic a.button_link:hover,
.ttc a.button_link:hover {
   color: #495057;  /*  Black text on hover 
    border-bottom: 2px solid #000000;  /* Black underline on hover */
}



/* Refactored panel container styles for a modern touch */
.dialog_view, .dv, .panelC {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    /* text-align: center; 
    margin: auto;*/
	}
/* Refactored panel container styles for a modern touch */
.dialog_viewC, .dvC  {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    /* text-align: center; */
    margin: auto;
	}


div.fixedHeaderScrollRegion { /* wrapper of scroll region */
    background-color: #ffffff; /* echo background color of dBody */
    height: 100%; /* height of scroll region */
    overflow-x: hidden; /* bug 94583 - hide unnecessary horizontal scroll bar */
    overflow-y: auto; /* render scroll bar if necessary */
}


/* Refactored label styles */
.field_label, .fl {
    color: #777777;  /* Bootstrap-like muted text */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.9rem;
    padding-bottom: 0.2rem;
    text-align: left;
}

/* Apply similar styles to button links 
a.button_link {
    color: #007bff;  /* Bootstrap primary color 
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

a.button_link:hover {
    color: #0056b3;  /* Darker on hover
    text-decoration: underline;
}
 */
.otp-input {
            width: 50px;
            height: 50px;
            font-size: 20px;
            text-align: center;
            margin: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

/* .tableCellLabel */
.tableCellLabel {
    color: #607890;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.275rem 0.6rem;
    display: inline-block;
    line-height: 2;
    transition: color 0.2s ease;
    vertical-align: middle;
}

.field_value, .fv { /* field value */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #607890;
    padding: 0px;
}


/* --------------------------------------------------------------------------*/
/*------------------ Collapsible menu ---------------------------------------*/
/* --------------------------------------------------------------------------*/
/*#menuWrapper{
    background-color:#ffffff;
    min-width:30px;
    padding:5px;
    border-top-right-radius:4px;
    border-bottom-right-radius:4px;
    
}
#toggleMenuButton{
    min-width:20px;
    cursor:pointer;
}
/* Hide the menu by default 
div.MLMmenuV {
    display: block;
    
}


    

/* General wrapper styles */
#layoutWrapper {
    display: flex;
  
/*   height: 100vh;  */
}

#menuWrapper {
    width: 200px; /* Default menu width */
    flex-shrink: 0;
    /*background-color: #f4f4f4;
    border-right: 1px solid #ddd;*/
    position: relative;
    transition: width 0.3s ease; /* Smooth transition for collapsing */
   /* Prevent overflow initially */
   border-radius:4px;
   margin-right:10px;
   margin-top:5px;
   height:auto;
}

#menuWrapper table,
#menuWrapper ul {
    width: 100%;
}

/* Handle the submenus */
#menuWrapper li {
    position: relative;
}

#menuWrapper .has-popup > ul {
    display: none; /* Initially hide submenus */
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 10; /* Ensure submenus are above other content */
}

/* When hovering or focusing on a parent menu item, display its submenu */
#menuWrapper .has-popup:hover > ul,
#menuWrapper .has-popup:focus-within > ul {
    display: block;
}

/* Collapse the menu when checkbox is checked */
#menuToggle:checked ~ #menuWrapper {
    width: 50px; /* Narrow width when collapsed */
    overflow: hidden; /* Hide overflow when collapsed */
}

/* Content area */
#contentWrapper {
    flex-grow: 1;
    padding: 5px;
    overflow: auto;
}

/* Smooth transition for menu collapse/expand */
#menuWrapper {
    transition: width 0.3s ease;
}
#menuWrapper:hover {
    transition: width 0.3s ease;
    width: 200px; /* Default menu width */
    flex-shrink: 0;
}

/* Adjust behavior when the menu is collapsed */
#menuToggle:checked ~ #menuWrapper {
    width: 50px; /* Narrow width when collapsed */
    overflow: hidden; /* Hide overflow when collapsed */
}

#menuWrapper ul {
    transition: opacity 0.3s ease;
}

/* Adjust menu text size and icons when collapsed */
#menuToggle:checked ~ #menuWrapper ul a {
    font-size: 0; /* Hide text */
}

#menuToggle:checked ~ #menuWrapper ul a::before {
    content: ''; /* Optionally show icons only when collapsed */
}

/* Allow the submenus to display correctly when the menu is expanded */
#menuWrapper .has-popup > ul {
    display: none;
    position: absolute;
    left:-40px;
    top: 0;
}

#menuWrapper .has-popup:hover > ul {
    display: block;
}

#menuWrapper #menuToggle:checked ~ #menuWrapper .has-popup > ul {
    display: none; /* Hide submenus when collapsed */
}

#menuWrapper ul a {
    display: block;
    padding: 10px;
    font-size: 14px;
    text-decoration: none;
}

#menuWrapper #toggleMenuButton {
    display: block;
    padding-top: 4px;
    padding-bottom:4px;
    padding-left:10px;
    padding-right:10px;
    background-color: #495057;
    text-align: center;
    cursor: pointer;
    width:auto;
    color:#ffffff;
    border-top-left-radius:4px;
    border-top-right-radius:4px;
}



/* Static Menu Item Style (MLMmvC) */
.MLMmvC {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    color: #495057;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    text-align: left;
    display: flex;
    min-width: 180px;
    min-height: 30px;

}
.MLMmvC:hover {
    -moz-transition: all 0.2s ease-in-out 0s;
	background: -moz-linear-gradient( center top, #99937f 5%, #b3ac95 100% );
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #99937f), color-stop(1, #b3ac95) );
	background: -ms-linear-gradient(top, #99937f 5%, #b3ac95 100%);
    	filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#99937f', endColorStr='#b3ac95');
	white-space: nowrap;
   color:#ffffff;

}
.MLMmvC a{
    
    color: #495057;  /* Dark gray text */
  
}
.MLMmvC a:hover{
    
    color: #ffffff;  /* Dark gray text */
   /* font-family: 'Segoe UI', Arial, sans-serif;   Modern font */
    
}
.MLMmvC img{
    
    /* color: #495057;  Dark gray text */
   /* font-family: 'Segoe UI', Arial, sans-serif;   Modern font */
   /* font-size: .75rem;   Font size for readability */
   height:24px;
   border:none;
   position : relative;
   padding-right: 10px;
}
/* Static Hover Style (MLMmvoC) */
.MLMmvoC:hover {
    background-color: #99937f;  /* Light gray background on hover */
    color: #ffffff;  /* Blue text on hover */
    border-color: #adb5bd;  /* Darker border on hover */
    cursor: pointer;  /* Pointer cursor on hover */
}

/* Dynamic Menu Container Style (MLMmenuVsub) */
.MLMmenuVsub {
    background-color: #ffffff;  /* White background for submenus */
    border: 1px solid #ced4da;  /* Light gray border */
    border-radius: 0.375rem;  /* Rounded corners */
    padding: 0.5rem 0;  /* Padding inside the dynamic menu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Light shadow for depth */
}

.MLMmenuVsub a{
    color: #495057;  /* Dark gray text */
}

.MLMmenuVsub:hover {
    -moz-transition: all 0.2s ease-in-out 0s;
	background: -moz-linear-gradient( center top, #99937f 5%, #b3ac95 100% );
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #99937f), color-stop(1, #b3ac95) );
	background: -ms-linear-gradient(top, #99937f 5%, #b3ac95 100%);
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#99937f', endColorStr='#b3ac95');
	white-space: nowrap;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    text-align: left;
    display: flex;
    min-width: 180px;
    min-height: 30px;
}
.MLMmenuVsub a:hover{
    color:#ffffff;
}

/* Dynamic Menu Item Style (MLMsubmvC) */
.MLMsubmvC {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    display: block;
    text-align: left;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    min-width: 150px;
}
.MLMsubmvC:hover {
    -moz-transition: all 0.2s ease-in-out 0s;
	background: -moz-linear-gradient( center top, #99937f 5%, #b3ac95 100% );
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #99937f), color-stop(1, #b3ac95) );
	background: -ms-linear-gradient(top, #99937f 5%, #b3ac95 100%);
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#99937f', endColorStr='#b3ac95');
	white-space: nowrap;
   
}
.MLMsubmvC a:hover {
    
    color: #ffffff;
   
}

/* Dynamic Hover Style for Sub-menu Items (MLMsubmvoC) */
.MLMsubmvoC:hover {
    background-color: #99937f;  /* Slightly darker gray background on hover */
    color: #ffffff;  /* Blue text on hover */
    cursor: pointer;  /* Pointer cursor on hover */
}

.themeButtonDropdown {
    background: -moz-linear-gradient(center top, #b3ac95 5%, #99937f 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b3ac95), color-stop(1, #99937f));
    background: -ms-linear-gradient(top, #b3ac95 5%, #99937f 100%);
    border: 1px solid #99937f;
    border-radius: 0.375rem;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #ffffff;
    background-color: #99937f;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Hover state for button */
.themeButtonDropdown:hover {
    color: #ffffff;
    background-color: #99937f;
}

/* Focus state for button */
.themeButtonDropdown:focus {
    outline: none; /* Remove default outline */
    box-shadow: none; /* Remove focus ring */
   color: #ffffff;
    background-color: #99937f;
}

/* Active state for button */
.themeButtonDropdown:active {
    outline: none;
    box-shadow: none;
    color: #ffffff; /* Ensure text color remains white */
}


.themeButtonMini {
   /* background-color: #e7feff;   Primary blue background 
    border: 1px solid #007bff; /*  Matching border with background 
        /* Rounded corners for a modern touch 
    color: #ffffff;             /* White text color */
  /*  font-family: 'Segoe UI', Arial, sans-serif;  Modern font */
  border-radius: 0.375rem;
    font-size: 0.875rem;        /* Slightly smaller font size */
    padding: 0.375rem 0.75rem;  /* Smaller padding for a compact button */
    text-transform: uppercase;  /* Uppercase text for a clean look */
    text-decoration: none;      /* Remove underline from links */
    display: inline-block;      /* Inline block for alignment */
    cursor: pointer;            /* Pointer cursor on hover */
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;  /* Smooth transition for hover/focus */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
}

/* Hover state for button */
.themeButtonMini:hover {
   /* background-color: #0056b3;   Darker blue on hover 
    border-color: #0056b3;      /* Darker border color 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);  /* Slightly stronger shadow on hover */
}

/* Active state for button */
.themeButtonMini:active {
   /* background-color: #004085;   Even darker blue when button is pressed 
    border-color: #004085;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow on active state */
}

/* Focus state for accessibility */
.themeButtonMini:focus {
    outline: none;  /* Remove default outline */
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);  /* Focus ring */
}


.required-highlight {
    border: 1px solid #ffc796 !important;  /* Ensuring it overrides other border styles */
    /*background-color: #fffaf0 !important;   Light background to show highlight */
    box-shadow: 0px 0px 5px rgba(255, 165, 0, 0.6); /* Optional: subtle glow to enhance visibility */
}


.QSttc {
    /*background-color: #ffffff;   White background */
    border: 1px solid #ced4da;   /* Light gray border */
    border-radius: 0.375rem;     /* Rounded corners for a modern touch */
    color: #495057;  /* Dark gray text */
  /*  font-family: 'Segoe UI', Arial, sans-serif;   Clean modern font */
    font-size: 0.875rem;         /* Slightly smaller font size */
    padding: 0.5rem 1rem;        /* Padding for content spacing */
    margin: 0.5rem 0;            /* Vertical spacing */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Subtle shadow for depth */
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;  /* Smooth transitions */
}

.QSttc:hover {
    background-color: #99937f;  /* Light gray background on hover */
    border-color: #adb5bd;       /* Darker border on hover */
    color:#f2f0df;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);  /* Stronger shadow on hover */
}

.QSttc:focus {
    border-color: #80bdff;       /* Light blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25); /* Blue glow on focus */
    outline: none;  /* Remove default outline */
}

.QStrSelected { /* quick selector selected state */
	background-color: #b3ac95;
    color:#ffffff;
	}

/* .tableCellValue */
.tableCellValue {
    color: #333333;  /* Dark gray text color, consistent with theme */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;   /* Modern font family */
    font-size: 0.9rem;  /* Match font size to .field_input (14px) */
    padding: 0.5rem 0.5rem;  /* Padding for consistency with theme */
    text-align: left;  /* Left-aligned text */
    vertical-align: middle;  /* Align text to the top */
}

.HeaderCells {
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;  /* Modern font family */
    font-size: 0.9rem;  /* Match font size to .tableCellValue (14px) */
    font-weight:500;  /* Keep bold for header emphasis */
    color: #ffffff;  /* White text color for headers */
    background-color: #495057;  /* Dark background color for headers */
    padding: 0.5rem 1rem;  /* Consistent padding with .tableCellValue */
    text-align: left;  /* Left-aligned text */
    vertical-align: top;  /* Align text at the top */
}

.CopyButton {
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 0.825rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.CopyButton:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.CopyButton:active {
    background-color: #004085;
    transform: translateY(0);
}

.copyIcon {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
}


/**********************************************************************
 * Table Rows Styles                                                  *
 **********************************************************************/
.header_cell,
.header_cell_scrolling,
.thc,
.thcs,
.thcnb,
.thcwb, .tch { /* column header container (above select checkbox) */
    background-color: #d7d7d7;
    border-bottom: 1px solid #cccccc;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    padding-bottom: 5px;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 5px;
    text-align: left;
    vertical-align: top;
}

    .column_header a,
    .column_header_scrolling a,
    .tch a,
    .tchs a { /* column header link text */
        color: #495057;
        cursor: pointer !important;
        font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
        font-size: 12px;
        font-weight: normal;
        text-decoration: none;
    }

        .column_header a:hover,
        .column_header_scrolling a:hover,
        .tch a:hover,
        .tchs a:hover { /* column header link text hover state */
            color: #495057;
            text-decoration: underline;
        }


/* Header Cells */
.header_cell, .header_cell_scrolling, .thc, .thcs, .thcnb, .thcwb {
    color: #495057; /* Dark gray text for headers */
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif; /* Modern font family, matching .tableCellValue */
    font-size: 0.9rem; /* Match the font size to .tableCellValue (14px) */
    font-weight: 500; /* Keep bold for header emphasis */
    padding: 0.5rem 1rem; /* Consistent padding with .tableCellValue */
    text-align: left; /* Left-aligned text */
    vertical-align: top; /* Align text at the top */
}

.failed {
    color: red;            /* Red text color */
    font-weight: bold;      /* Bold text to make it stand out */
    background-color: #ffe6e6; /* Light red background (optional) */
    border: 0px none red;  /* Red border (optional) */
    padding: 10px;          /* Padding around the text */
    margin: 10px 0;         /* Spacing between elements */
    border-radius: 5px;     /* Rounded corners (optional) */
}

.themeButtonG {
    background: linear-gradient(180deg, #3c9405 5%, #c8fcbe 100%);  
    border: 1px solid #3c9405;
    border-radius: 0.375rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;  /* 12pt equivalent */
    font-weight: bold;
    padding: 0.4rem 1rem 0.75rem 1rem;  /* Reduced padding */
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
     color: #495057;
   /* transition: background-color 0.2s ease, border-color 0.2s ease;
    height: 1.5rem;    Fixed height */
    line-height: normal;  /* No line-height to prevent vertical shifting */
    text-align: center;
    text-shadow:none;
}

/* Hover state for .themeButton */
    .themeButtonG:hover {
        background: #007bff;
        border-color: #3c9405;
        color: #725a29;
    }

    .themeButtonG input {
    color: #495057;  /* Bootstrap primary color  */
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

 .themeButtonG input:hover {
    color: #f8f9fa;  /* Darker on hover */
    text-decoration: underline;
}
 .pcC { /* page container center (contents of page container) */
	height: calc(100vh - 144px);  /*678px; */
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	/*text-align: center;*/
	vertical-align: top;
	}
 .pcL { /* page container left middle edge (vertical menu container) */
	padding-top: 10px;
	vertical-align: top;
    width:240px;
	}
 .pHeaderC { /* page header logo container */
	text-align: left;
	vertical-align: middle;
	width: calc(100vw - 240px); /*750px;*/
	}
 .pHeaderR { /* page header security panel container */
	text-align: right;
	width: 250px;
	}

 /*-- **************************************************************--
     FILTER Area

 --*****************************************************************--*/
 
.Filter_Input, .fili { /* filter drop-down list */
	background-color: #f2f0df;  /* Lighter background for modern look */
    border: 1px solid #ced4da;   /* Softer gray for the border */
    border-radius: 0.25rem;     /* Rounded corners (6px), similar to Tailwind */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Light shadow for depth */
    color: #495057;  /* Dark gray text color *
    font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font *
    font-size: 0.75rem;  /* Modern readable font size (16px) */
    padding: 0.3rem 0.3rem;  /* Padding for input: vertical 8px, horizontal 16px */
   
    font-size: 0.85rem;
	margin-bottom: 0px;
	margin-left: 2px;
	margin-right: 2px;
	padding-top: 0px;
	}

.Filter_Input:focus, .fili:focus {
    border-color: #99937f;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}

.filter_area, .fila { /* filter label *
	 font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.85rem;  /* Modern readable font size (16px) */
	padding: 4px 7px 4px 7px;
	text-align: right;
	vertical-align: middle;
	white-space: nowrap;	
	}
	
.Pagination_Input, .pri { /* pagination row input textbox/drop-down list container */
	background-color: #f2f0df;  /* Lighter background for modern look */
    border: 1px solid #ced4da;   /* Softer gray for the border */
    border-radius: 0.25rem;     /* Rounded corners (6px), similar to Tailwind */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);  /* Light shadow for depth */
    color: #495057;  /* Dark gray text color */
 /*   font-family: 'Segoe UI', Arial, sans-serif;   Clean modern font */
    font-size: 0.75rem;  /* Modern readable font size (16px) */
    padding: 0.1rem 0.1rem; 
	text-align: center;
	}

.Pagination_Input:focus, .pri:focus {
    border-color: #99937f;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}
	
.search_area, .sa { /* search area container *
	 font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.8rem;  /* Modern readable font size (16px) */
	padding-top: 5px;
	padding-bottom: 2px;
	}

.search_label, .sl { /* search label *
	 font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.8rem;  /* Modern readable font size (16px) */
	padding: 5px;
	vertical-align: middle;
	white-space: nowrap;	
	}

.rangeFilterText, .rft { /* range filter label *
	color: #555555;
	 font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.8rem;  /* Modern readable font size (16px) */
	font-weight: normal;
	padding-left: 6px;
	padding-right: 6px;
	text-decoration: none;
	text-transform: none;
	}
/*--------------------------- SEarch Input--------------------*/

.panelSearchBox {
    background-color: #f2f0df;  /* Light gray background for modern look 
    border: 1px solid #99937f;    /*Soft gray border */
    border-radius: 4px;
	height: 16px;
	padding: 0px;	
	padding-left: 2px;
	padding-right: 2px;
	width: 200px;
	}

.panelSearchBox:hover { /* panel search textbox hover state */
	background-color: #f2f0df;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 2px rgba(187, 187, 187, 0.25);
	}

.Search_Input, .si { /* search textbox */
	border: 1px solid #99937f;
    border-radius:4px;
	color: #555555;
	/* font-family: 'Segoe UI', Arial, sans-serif;   Clean modern font */
    font-size: 0.8rem; 
	font-weight: normal;
	padding: 0.3rem 0.3rem;
	width: 200px;
	} 

.Search_InputHint { /* "search for..." text inside search textbox */
	border: none;
	color: #999999;
	/*font-family: 'Segoe UI', Arial, sans-serif;   Clean modern font */
    font-size: 0.8rem; 
	font-weight: normal;
	padding: 0.3rem 0.3rem;
	width: 200px;
	} 
.Search_Input:focus, .si:focus {
    border-color: #99937f;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}
/**********************************************************************
 * Tailwind Calendar Styles                                           *
 **********************************************************************/
.MyCalendar {
    left: inherit !important;
    top: inherit !important;
}

.MyCalendar .ajax__calendar_container {
    @apply bg-white border border-gray-500 text-black z-20;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #f2f0df;  /* Light gray background for modern look */
    border: 1px solid #ced4da;
	font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.9rem; 
}

.MyCalendar .ajax__calendar_container table {
    @apply w-full h-full;
}

.MyCalendar .ajax__calendar_day {
    @apply border border-transparent;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.8rem; 
	font-weight: normal;
}

.MyCalendar .ajax__calendar_other .ajax__calendar_day,
.MyCalendar .ajax__calendar_other .ajax__calendar_year {
    @apply border-transparent text-gray-500;
}

.MyCalendar .ajax__calendar_hover .ajax__calendar_day,
.MyCalendar .ajax__calendar_hover .ajax__calendar_month,
.MyCalendar .ajax__calendar_hover .ajax__calendar_year {
    font-size: 0.85rem; 
	font-weight: normal;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color:#ffffff;
    background-color: #99937f;  /* Light gray background for modern look 
    border: 1px solid #007bff;*/
}

.MyCalendar .ajax__calendar_active .ajax__calendar_day,
.MyCalendar .ajax__calendar_active .ajax__calendar_month,
.MyCalendar .ajax__calendar_active .ajax__calendar_year {
   
	color:#ffffff;
    background-color: #99937f;
}

.MyCalendar .ajax__calendar_invalid .ajax__calendar_day,
.MyCalendar .ajax__calendar_invalid .ajax__calendar_month,
.MyCalendar .ajax__calendar_invalid .ajax__calendar_year { /* AJAX calendar current day/month/year container */
	background-color: #d2cfc5;
	border: 0px solid #0065ce;
	color: #dddddd;
	cursor: not-allowed;
	}

.MyCalendar .ajax__calendar_invalid_hover .ajax__calendar_day,
.MyCalendar .ajax__calendar_invalid_hover .ajax__calendar_month,
.MyCalendar .ajax__calendar_invalid_hover .ajax__calendar_year  { /* AJAX calendar current day/month/year container */
	background-color: #d2cfc5;
	border: 0px solid #0065ce;
	color: #dddddd;
	cursor: not-allowed;
	}
	


.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.column_header a,
.column_header_scrolling a,
.tch a,
.tchs a { /* column header link text */
    color: #495057;
    cursor: pointer !important;
    font-family: 'Segoe UI Variable', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
} 
	
.column_header a:hover,
.column_header_scrolling a:hover,
.tch a:hover,
.tchs a:hover { /* column header link text hover state */
	color: #607890;
	text-decoration: underline;
	}
/*.QSContainer .scrollRegion div { 
	margin: 0px;
    background-color:#ffffff;
	}*/

/* Hide the original checkbox */
input[type="checkbox"] {
  appearance: none; /* Remove default checkbox styles */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 36px; /* Width of the toggle */
  height: 16px; /* Height of the toggle */
  background-color: #ccc; /* Default background */
  border:1px solid #99937f;
  border-radius: 32px; /* Rounded edges */
  position: relative; /* Position for the slider */
  cursor: pointer;
  transition: background-color 0.4s ease;
  vertical-align:middle
}

/* Create the slider (circle) */
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  height: 12px; /* Diameter of the slider */
  width: 12px;
  left: 1px; /* Position inside the toggle */
  bottom: 1.5px;
  background-color: white;
  border-radius: 50%; /* Make it circular */
  transition: transform 0.4s ease;
}

/* Change appearance when the checkbox is checked */
input[type="checkbox"]:checked {
  background-color: #99937f; /* Background when toggled */
}

input[type="checkbox"]:checked::before {
  transform: translateX(20px); /* Move the slider to the right */
}

input[type="radio"]:checked {
  border-color: #99937f; /* Border color when checked */
  background-color: #99937f; /* Background color when checked */
}


/* Highlight style */
/*.copied-highlight {
    border: 2px solid orange;
    background-color: #fff8e1;
    position: relative;
}*/
.field_hidden {
    display: none;
    border:none;
}
/* Callout style */
.callout {
    display: inline-flex;
    align-items: center;
    position: absolute;
    /*background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
    z-index: 10;
}

.callout .info-icon {
    width: 16px;
    height: 16px;
    /*margin-right: 5px;*/
    background-color: #ff6600;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    line-height: 16px;
    cursor: help;
    position: relative;
}

.callout .info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    font-size: 10px;
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.status-draft, .status-new {
    color: #f0ad4e;  /* Set the text color to amber */
    font-weight: bold;  /* Make the text bold */
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

/* Add a circle next to the text */
.status-draft:before, .status-new:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #f0ad4e;  /* Amber color for the circle */
    border-radius: 50%;
}

/* Sent status */
.status-sent {
   
    color: #5bc0de;  /* Set the text color to amber */
    font-weight: bold;  /* Make the text bold */
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

.status-sent:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #5bc0de;  
    border-radius: 50%;
}

/* Paid status */
.status-paid {
    color: #5cb85c;  /* Set the text color to amber */
    font-weight: bold;  /* Make the text bold */
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

.status-paid:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #5cb85c;  
    border-radius: 50%;
}
.status-partial {
    color: #ff6600;  /* Set the text color to amber */
    font-weight: bold;  /* Make the text bold */
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}
.status-partial:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #ff6600;  
    border-radius: 50%;
}