body, html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f7fa;
}

#content{
    width: 100%;
    height: 100%;
    background-color: #f8f7fa;
}

.pointer{
    cursor: pointer;
}

.icon-search{
    color: #000;
}
.icon-search:hover{
    scale: 1.25;
}

.hover-scale-1-25:hover{
    scale: 1.25;
}

.icon-maximize{
    color: #000;
}
.icon-maximize:hover{
    scale: 1.25;
}
.divider{
    /* position: relative; */
    width: 100%;
    height: 1px;
    background-color: #000;
}

.animation-all{
    transition: all 0.5s ease-in-out;
}

.link-jobs:hover {
    scale: 1.25
}

.icon-edit{
    color: #000000;
}
.icon-edit:hover{
    cursor: pointer;
    scale: 1.25;
}

.loading-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh; /* Make overlay cover the entire viewport */
}

.loading-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 99999; /* Ensure the overlay is above other content */
}
.swal2-container{
    z-index: 9999;
}
.text-lg-custom{
    font-size: 1.376rem !important;
    line-height: 1;
}

.cursor-disabled:disabled{
	cursor: not-allowed !important;
	pointer-events: all !important;
}

.light-style .select2-dropdown {
	z-index: 9999 !important;
}


.fade-custom{
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.fade-in{
	opacity: 1;
}
.fade-out{
	opacity: 0;
}

.hoverable:hover{
	cursor: pointer;
}

.sorting_desc::after{
	margin-left: 20px;
    content: "▲";
    content: "▲" / "";
}
.sorting_asc::after{
	margin-left: 20px;
	content: "▼";
    content: "▼" / "";
}