﻿/**********************************************************************
 * 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.      *
 *                                                                    *
 **********************************************************************/

input:disabled,
button:disabled,
select:disabled,
textarea:disabled {
    background-color: #f0f0f0;
    color: #999999;
    cursor: not-allowed;
    border: 1px solid #cccccc;
    opacity: 0.6;
}

.dialog_view, .printDv, .panelC { /* 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;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 0.875rem;
    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', 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_m:focus, .fi_m: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: #e7feff;  /* Light gray background for modern look */
    border: 1px solid #ced4da;    /*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.8rem;  /* Readable font size (16px) */
    padding: 0.375rem 0.75rem;  /* Padding for spacing */
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;  /* Smooth transition */
}

.field_input:focus, .fi:focus {
    border-color: #80bdff;  /* 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: #e7feff;  /* Light gray background for modern look */
    border: 1px solid #ced4da;    /*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.8rem;  /* Readable font size (16px) */
    text-align:right;
    padding: 0.375rem 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:focus, .fi_currency:focus {
    border-color: #80bdff;  /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);  /* Slight glow on focus */
    outline: none;  /* Remove default outline */
}
/* 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;
}*/

.Search_Input:focus, .si:focus {
    border-color: #80bdff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
    outline: none;
}
.required-highlight {
    border: 2px solid #ffa500; /* Orange border for required fields */
    background-color: #fffaf0; /* Light orange background */
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}


/* .themeButton */
.themeButton {
    background: linear-gradient(180deg, #ececec 5%, #adb5bd 100%);  
    border: 1px solid #495057;
    border-radius: 0.375rem;
      /* color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;  12pt equivalent 
    font-weight: bold;*/
    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 {
    background: linear-gradient(180deg, #0056b3 20%, #77d0fc 100%);
    border-color: #4da6ff;
    color: #ffffff;
}
.themeButton:hover a.button_link{
      
    color: #ffffff;
}


/* .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;
   
    color: #495057;  /* 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: #ffffff;  /*  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;  /* Slightly larger rounded corners */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);  /* Subtle box shadow */
    padding: 1rem;
    text-align: left;
}

/* Refactored label styles */
.field_label, .fl {
    color: #6c757d;  /* Bootstrap-like muted text */
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    padding-bottom: 0.25rem;
    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: #495057;  /* Dark gray text color for contrast */
    font-family: 'Segoe UI', Arial, sans-serif; /* Modern font */
    font-size: 0.75rem;  /* Same font size as .field_input */
    font-weight: 500;  /* Normal weight for label */
    padding: 0.275rem 0.6rem;  /* Padding similar to .field_input */
    display: inline-block;
    line-height: 2.5;       /* Ensure text is vertically centered */
    transition: color 0.2s ease;  /* Smooth transition for text color on hover */
}

/* Static Menu Item Style (MLMmvC) */
.MLMmvC {
    background-color: #ffffff;  /* White background */
    border: 1px solid #ced4da;  /* Light gray border for menu item */
    color: #495057;  /* Dark gray text */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font */
    font-size: .75rem;  /* Font size for readability */
    padding: 0.5rem 0.2rem 0.5rem 0.5rem;  /* Padding for space */
    text-align: left;  /* Left align text */
    display: block;  /* Block-level item for full width */
   /* 
    transition: background-color 0.2s ease, border-color 0.2s ease;   Smooth transition */
}
.MLMmvC a{
    
    color: #495057;  /* Dark gray text */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font */
    font-size: .75rem;  /* Font size for readability */
   width:200px;
       font-weight: 500;
}
.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: #e9ecef;  /* Light gray background on hover */
    color: #007bff;  /* 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 */
}

/* Dynamic Menu Item Style (MLMsubmvC) */
.MLMsubmvC {
    background-color: #f8f9fa;  /* Light gray background */
    border-bottom: 1px solid #e9ecef;  /* Border between sub-items */
    color: #495057;  /* Dark gray text */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font */
    font-size: 0.75rem;  /* Slightly smaller font size for sub-items */
    padding: 0.5rem 1rem;  /* Padding for sub-items */
    display: block;  /* Block-level for sub-item */
    text-align: left;  /* Left align text */
    transition: background-color 0.2s ease, color 0.2s ease;  /* Smooth transition */
}

/* Dynamic Hover Style for Sub-menu Items (MLMsubmvoC) */
.MLMsubmvoC:hover {
    background-color: #e2e6ea;  /* Slightly darker gray background on hover */
    color: #007bff;  /* Blue text on hover */
    cursor: pointer;  /* Pointer cursor on hover */
}

.MLMsubmvC a {
    color: #495057;  /* Dark gray text */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font */
    font-size: .75rem;  /* Font size for readability */
    width:160px;
    font-weight: 500;
}


.themeButtonMini {
    background-color: #e7feff;  /* Primary blue background */
    border: 1px solid #007bff; /*  Matching border with background */
    border-radius: 0.375rem;    /* Rounded corners for a modern touch */
    color: #ffffff;             /* White text color */
    font-family: 'Segoe UI', Arial, sans-serif; /* Modern font */
    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: #f1f3f5;  /* Light gray background on hover */
    border-color: #adb5bd;       /* Darker border on hover */
    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 */
}

/* .tableCellValue */
.tableCellValue {
    color: #495057;  /* Dark gray text color, consistent with theme */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font family */
    font-size: 0.8rem;  /* 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: top;  /* Align text to the top */
     /* line-height: 1.5; Improve readability with line-height */
}
/* Header Cells */
.header_cell, .header_cell_scrolling, .thc, .thcs, .thcnb, .thcwb {
    background-color: #f8f9fa;  /* Light background for headers */
    border-bottom: 1px solid #ced4da;  /* Solid gray border, more modern look */
    color: #495057;  /* Dark gray text for headers */
    font-family: 'Segoe UI', Arial, sans-serif;  /* Modern font family, matching .tableCellValue */
    font-size: 0.75rem;  /* Match the font size to .tableCellValue (14px) */
    font-weight:600;  /* 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: #f8f9fa;
    }

    .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: #e7feff;  /* 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.75rem;
	margin-bottom: 0px;
	margin-left: 2px;
	margin-right: 2px;
	padding-top: 0px;
	}

.Filter_Input:focus, .fili:focus {
    border-color: #80bdff;
    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.75rem;  /* 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: #e7feff;  /* 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: #80bdff;
    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.75rem;  /* 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.75rem;  /* 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.75rem;  /* Modern readable font size (16px) */
	font-weight: normal;
	padding-left: 6px;
	padding-right: 6px;
	text-decoration: none;
	text-transform: none;
	}
/*--------------------------- SEarch Input--------------------*/

.Search_Input, .si { /* search textbox */
	border: 1px solid #ced4da;
    border-radius:6px;
	color: #555555;
	 font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.75rem; 
	font-weight: normal;
	padding: 0.3rem 0.3rem;
	width: 246px;
	} 

.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.75rem; 
	font-weight: normal;
	padding: 0.3rem 0.3rem;
	width: 246px;
	} 
/**********************************************************************
 * 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: #e7feff;  /* Light gray background for modern look */
    border: 1px solid #ced4da;
}

.MyCalendar .ajax__calendar_container table {
    @apply w-full h-full;
}

.MyCalendar .ajax__calendar_day {
    @apply border border-transparent;
    font-family: 'Segoe UI', Arial, sans-serif;  /* Clean modern font */
    font-size: 0.75rem; 
	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.8rem; 
	font-weight: normal;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color:#ffffff;
    background-color: #007bff;  /* 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 {
    @apply bg-blue-100 border border-blue-600 text-blue-600;
}

.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: #effbff;
	border: 0px solid #0065ce;
	color: #dddddd;
	}

.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: #effbff;
	border: 0px solid #0065ce;
	color: #dddddd;
	}