/* In public/css/custom.css */
html {
    font-size:12px; /* Replace with your desired font */
}

.body {
    overflow: auto;
}

table.dataTable tbody tr.selected > * {
    box-shadow: inset 0 0 0 9999px #ADD8E6 !important;
}

/* Set !important rule to override default colors */
.active {
    background: #ADD8E6 !important;
}


i#loading-icon {
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 48px;
    margin-top: -15px;
    margin-left: -15px;
}

#overlay2 {
    position: fixed; /* Sit on top of the page content */
    /*display: none; *//* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    /*right: auto;*/
    /*bottom: auto;*/
    background-color: rgba(0,0,0,0.2); /* Black background with opacity */
    z-index: 2000; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.loading {
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    /*right:auto;*/
    /*bottom: auto;*/
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    min-height: 120%;
}
.loading-content {
    position: fixed;
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #333333; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

 .calendar .calendar-header .year-title {
     font-weight: 700;
     text-align: center;
     height: 16px;
     width: auto;
     font-size: 14px;
 }
