:root {
	--page-bg: #fff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0px;
}

[data-bs-theme=dark] {
	--page-bg: #444;
}

[data-bs-theme=blue-theme] {
	--page-bg: #0e1332;
}

.main-wrapper {
	margin-top: 41px;
}

.page.content {
	background: var(--page-bg);
	padding: 10px;
	border-radius: 10px;
	min-height: 80vh;
	margin: 20px 0px;
}

.page.content.header {
	min-height: 30px;
	padding: 25px;
	border-top: 3px solid #0d6efd;
}

.info-tooltip {
	position: relative;
}

/*
 * Assuming your CSS file is in 'css/style.css'
 * and your fonts are in 'fonts/' relative to the project root.
 * The path to the font file will be '../fonts/...'
 */

/* Open Sans Light (300) */
@font-face {
	font-family: 'osl';
	src: url('../fonts/OpenSans-Light.ttf');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}

@font-face {
	font-family: 'osli';
	src: url('../fonts/OpenSans-LightItalic.ttf');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}

@font-face {
	font-family: 'osr';
	src: url('../fonts/OpenSans-Regular.ttf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}

@font-face {
	font-family: 'osi';
	src: url('../fonts/OpenSans-Italic.ttf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}

@font-face {
	font-family: 'ossb';
	src: url('../fonts/OpenSans-SemiBold.ttf');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}


@font-face {
	font-family: 'osb';
	src: url('../fonts/OpenSans-Bold.ttf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}

@font-face {
	font-family: 'osbi';
	src: url('../fonts/OpenSans-BoldItalic.ttf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	/* Optional: controls font loading behavior */
}


* {
	font-family: osr, "Noto Sans", sans-serif;
	font-size: 14px;
}

.ff-osl {
	font-family: osl;
}

.ff-osli {
	font-family: osli;
}

.ff-osb {
	font-family: osb;
}

.ff-osbi {
	font-family: osbi;
}

.ff-osr {
	font-family: osr;
}

.ff-osi {
	font-family: osi;
}

.ff-ossb {
	font-family: ossb;
}

.info-tooltip .tooltip-div {
	position: absolute;
	font-weight: normal;
	background: var(--page-bg);
	z-index: 9999;
	padding: 10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 10px;
	min-width: 150px;
	display: none;
}

.statusBTNLabel {
	width: 30px;
	height: 30px;
	text-align: center;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*Modal*/
.modal-header {
	padding-bottom: 0px;
}

.close.modal-close {
	background: transparent;
	border: 0px;
	font-size: 13em !important;
	color: #d39898;
	display: flex;
	align-items: center;
	height: 50px;
	/* font-size: 20px; */
}

.close.modal-close span {
	font-size: 20px;
}

.modal-body {
	padding-top: 0px;
}







/*Forms*/
.form-control:focus {
	box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}

.form-error {
	display: none;
}

.form-control {
	padding: .75rem .75rem;
}






.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 10;
	margin-top: 10px;
}






/*Datatables*/
.table-responsive {
	overflow-x: hidden;
}

.dataTables_wrapper .row {
	align-items: center;
}

.dataTables_wrapper .row div:nth-of-type(2) {
	justify-content: flex-end;
	display: flex;
}

.dataTables_length label {
	display: flex;
	align-items: center;
}

.dataTables_length label select {
	max-width: 70px;
	margin: 0px 5px;
}

.dataTables_filter input {
	min-width: 300px;
}

table.dataTable tr.table-row {
	position: relative;
}

.table-row.suspended td:last-of-type:after {
	position: absolute;
	width: 3px;
	height: 100%;
	right: 0;
	background: orange;
	content: "";
	top: 0;
}

table.dataTable a {
	color: var(--bs-heading-color);
}







/*Uitilities*/
.bold {
	font-weight: bold;
}

.bolder {
	font-weight: bolder;
}

.cursor {
	cursor: pointer;
}

.relative {
	position: relative;
}

.hidden {
	display: none !important;
}



/*Search result*/
.search_result {
	background: var(--page-bg);
	width: 100%;
	position: absolute;
	max-height: 400px;
	z-index: 9999;
	border: 1px solid #eff1f3;
	;
	display: none;
	overflow-y: scroll;
}

.search_result a {
	padding: 10px;
	border-bottom: 1px solid #eff1f3;
	color: var(--bs-heading-color);
	transition-duration: 400ms;
}

.search_result a:hover {
	background: #eff1f3;
}

.search_result a p {
	display: flex;
	flex-wrap: wrap;
	flex-basis: 100%;
	margin: 0px;
	padding: 0px;
}

[data-bs-theme=dark] .search_result {
	border: 1px solid var(--bs-body-bg-2);
}

[data-bs-theme=dark] .search_result a {
	border-bottom: 1px solid var(--bs-body-bg-2);
}

[data-bs-theme=dark] .search_result a:hover {
	background: var(--bs-body-bg-2);
}


/*Swal*/
.swal-button.swal-button--confirm {
	background: #0c5bd1;
}

.swal-button.swal-button--confirm:hover {
	background: #0b4399;
}

.warning-swal .swal-button.swal-button--confirm {
	background: #ff4f4f;
}

.warning-swal .swal-button.swal-button--confirm:hover {
	background: #d33131;
}

.warning-swal .swal-button:focus {
	outline: none;
	box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(255 113 126 / 29%);
}

.all_reports {
	padding: 1px 15px;
}

a.report {
	display: flex;
	align-items: center;
	transition-duration: 400ms;
}

a.report .report-inner {
	border: 1px solid #eff1f3;
	display: flex;
	align-items: center;
	border-radius: 3px;
	;
	flex-basis: 100%;
	padding-right: 10px;
	;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

a.report p {
	margin: 0px;
	padding: 0px;
	;
	color: var(--bs-heading-color);
	display: flex;
	justify-content: space-between;
	flex-basis: 90%;
	align-items: center;
	transition-duration: 400ms;
}

[data-bs-theme=dark] body a.report p {
	color: #dde0e4;
}

a.report:hover p,
[data-bs-theme=dark] body a.report:hover p {
	color: #0c5bd1;
}

a.report i.icon {
	flex-basis: 10%;
	border-right: 1px solid #eff1f3;
	padding: 10px;
	;
	font-size: 30px;
	;
}

body.toggled .logo-img {
	width: 100% !important;
	height: auto !important;
}

.emp-profile {
	position: relative;
}

img.profile-img {
	width: 190px !important;
	height: 190px !important;
	border-radius: 50%;
	border: 5px solid;
	max-width: 190px !important;
}

.profile-img-edit {
	position: absolute;
	right: 25%;
	bottom: 20px;
	width: 30px;
	height: 30px;
	background: var(--page-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	cursor: pointer;
}

.profile-img-edit input {
	display: none;
}

button.btn.dropdown-toggle:not(.actions) {
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
	height: 46px;
	line-height: 35px;
	border: var(--bs-border-width) solid var(--bs-border-color);
}

.dropdown.bootstrap-select.my-select {
	display: block;
	width: 100% !important;
}

.page-footer {
	position: fixed;
	bottom: 0;
	;
}


.sidebar-wrapper .sidebar-nav .metismenu a .parent-icon .bi {
	font-size: 17px;
	font-weight: bold;
}

.sidebar-wrapper .sidebar-nav .metismenu ul a {
	font-size: 14px;
}

.sidebar-wrapper .sidebar-nav .metismenu ul a i {
	font-size: 13px;
	margin-right: 10px;
}

.sidebar-wrapper .sidebar-nav .metismenu ul {
	padding-left: 25px;
}

@media (max-width: 1128px) {
	body.toggled .sidebar-wrapper .sidebar-header .logo-img {
		width: 50% !important;
		height: 50% !important;
	}
}

@media (max-width: 580px) {
	.modal.show .modal-dialog {
		margin-top: 50px;
	}
}



/* PREMIUM DASHBOARD STYLES */
:root {
	--card-bg: #ffffff;
	--body-bg: #f5f7fb;
	--primary-color: #4361ee;
	--success-color: #00d084;
	--warning-color: #ff9f43;
	--danger-color: #ff6b6b;
	--text-primary: #2d3436;
	--text-secondary: #636e72;
}

.card {
	transition: all 0.3s ease;
	border: none !important;
	background-color: var(--bs-card-bg);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.card-stat h3 {
	font-size: 1.8rem;
}

.stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wh-42 {
	width: 48px !important;
	height: 48px !important;
	flex-shrink: 0;
}

.icon-circle {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 20% !important;
	/* User specified 20% for squircle look */
	background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%) !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle i,
.icon-circle span {
	font-size: 1.4rem;
}

/* Row 1 Custom Gradients with Wavy Effect */
.card-stat {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.card-stat::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 60px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	z-index: -1;
	opacity: 0.6;
}

.card-total-emp {
	background-color: #E1EBFF !important;
}

.card-total-emp::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%236c9bff' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,181.3C384,171,480,117,576,128C672,139,768,213,864,224C960,235,1056,181,1152,149.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

.card-new-hires {
	background-color: #EEFDF4 !important;
}

.card-new-hires::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d084' fill-opacity='0.3' d='M0,224L48,202.7C96,181,192,139,288,149.3C384,160,480,224,576,224C672,224,768,160,864,160C960,160,1056,224,1152,229.3C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

.card-pending-leave {
	background-color: #FFF9EC !important;
}

.card-pending-leave::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff9f43' fill-opacity='0.3' d='M0,96L48,128C96,160,192,224,288,213.3C384,203,480,117,576,117.3C672,117,768,203,864,224C960,245,1056,203,1152,176C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

.card-payroll {
	background-color: #DFF7EB !important;
}

.card-payroll::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d084' fill-opacity='0.3' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,170.7C672,171,768,117,864,122.7C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

/* PREMIUM SUMMARY CARDS STYLING */
.card-stat {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-stat::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 70px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	z-index: -1;
	opacity: 0.5;
}

/* Light Mode Defaults */
.card-1 {
	background-color: #E1EBFF !important;
	color: #2d3436;
}

.card-2 {
	background-color: #EEFDF4 !important;
	color: #2d3436;
}

.card-3 {
	background-color: #DFF7EB !important;
	color: #2d3436;
}

.card-4 {
	background-color: #f3f0ff !important;
	color: #2d3436;
}

/* SVG Waves for Light Mode */
.card-1::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%236c9bff' fill-opacity='1' d='M0,160L48,165.3C96,171,192,181,288,160C384,139,480,85,576,101.3C672,117,768,203,864,224C960,245,1056,203,1152,176C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0.3;
}

.card-2::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d084' fill-opacity='1' d='M0,224L48,202.7C96,181,192,139,288,149.3C384,160,480,224,576,224C672,224,768,160,864,160C960,160,1056,224,1152,229.3C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0.2;
}

.card-3::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d084' fill-opacity='1' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,85.3C672,75,768,85,864,112C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0.15;
}

.card-4::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%237d33ff' fill-opacity='1' d='M0,32L60,48C120,64,240,96,360,117.3C480,139,600,149,720,144C840,139,960,117,1080,101.3C1200,85,1320,75,1380,69.3L1440,64L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0.15;
}

/* Global Dark Mode Overrides (High Specificity) */
html[data-bs-theme='dark'] .card-stat,
html[data-bs-theme='blue-theme'] .card-stat,
html[data-bs-theme='semi-dark'] .card-stat {
	color: #ffffff !important;
}

html[data-bs-theme='dark'] .card-1,
html[data-bs-theme='blue-theme'] .card-1,
html[data-bs-theme='semi-dark'] .card-1,
html[data-bs-theme='dark'] .card-total-emp,
html[data-bs-theme='blue-theme'] .card-total-emp,
html[data-bs-theme='semi-dark'] .card-total-emp {
	background-color: #1a2a47 !important;
	border: 1px solid rgba(67, 97, 238, 0.4) !important;
}

html[data-bs-theme='dark'] .card-2,
html[data-bs-theme='blue-theme'] .card-2,
html[data-bs-theme='semi-dark'] .card-2,
html[data-bs-theme='dark'] .card-new-hires,
html[data-bs-theme='blue-theme'] .card-new-hires,
html[data-bs-theme='semi-dark'] .card-new-hires {
	background-color: #06402d !important;
	border: 1px solid rgba(0, 208, 132, 0.4) !important;
}

html[data-bs-theme='dark'] .card-3,
html[data-bs-theme='blue-theme'] .card-3,
html[data-bs-theme='semi-dark'] .card-3,
html[data-bs-theme='dark'] .card-payroll,
html[data-bs-theme='blue-theme'] .card-payroll,
html[data-bs-theme='semi-dark'] .card-payroll {
	background-color: #0f403c !important;
	border: 1px solid rgba(0, 208, 132, 0.3) !important;
}

html[data-bs-theme='dark'] .card-4,
html[data-bs-theme='blue-theme'] .card-4,
html[data-bs-theme='semi-dark'] .card-4,
html[data-bs-theme='dark'] .card-pending-leave,
html[data-bs-theme='blue-theme'] .card-pending-leave,
html[data-bs-theme='semi-dark'] .card-pending-leave {
	background-color: #4d3c1a !important;
	border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

/* Text Readability in Dark Mode */
html[data-bs-theme='dark'] .card-stat h3,
html[data-bs-theme='blue-theme'] .card-stat h3,
html[data-bs-theme='semi-dark'] .card-stat h3,
html[data-bs-theme='dark'] .card-stat h4,
html[data-bs-theme='blue-theme'] .card-stat h4,
html[data-bs-theme='semi-dark'] .card-stat h4,
html[data-bs-theme='dark'] .card-stat h5,
html[data-bs-theme='blue-theme'] .card-stat h5,
html[data-bs-theme='semi-dark'] .card-stat h5,
html[data-bs-theme='dark'] .card-stat p,
html[data-bs-theme='blue-theme'] .card-stat p,
html[data-bs-theme='semi-dark'] .card-stat p,
html[data-bs-theme='dark'] .card-stat small,
html[data-bs-theme='blue-theme'] .card-stat small,
html[data-bs-theme='semi-dark'] .card-stat small,
html[data-bs-theme='dark'] .card-stat .text-secondary,
html[data-bs-theme='blue-theme'] .card-stat .text-secondary,
html[data-bs-theme='semi-dark'] .card-stat .text-secondary {
	color: #ffffff !important;
	opacity: 1 !important;
}

html[data-bs-theme='dark'] .card-stat .small,
html[data-bs-theme='blue-theme'] .card-stat .small,
html[data-bs-theme='semi-dark'] .card-stat .small {
	color: rgba(255, 255, 255, 0.9) !important;
}

/* Expiry List Items */
.expiry-item {
	padding: 12px 0;
	border-bottom: 1px solid rgba(var(--bs-secondary-rgb), 0.1);
}

.expiry-item:last-child {
	border-bottom: none;
}

.expiry-badge {
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
}

/* Attendance Widget Styles */
.attendance-stat-row {
	padding: 12px;
	border-radius: 12px;
	margin-bottom: 10px;
	background-color: rgba(var(--bs-secondary-rgb), 0.03);
}

.bg-present {
	border-left: 4px solid var(--bs-success);
}

.bg-absent {
	border-left: 4px solid var(--bs-danger);
}

.bg-on-leave {
	border-left: 4px solid var(--bs-primary);
}

/* Upcoming Leave List */
.leave-item-admin {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 12px;
	margin-bottom: 10px;
	background-color: rgba(var(--bs-secondary-rgb), 0.03);
}

.avatar-init {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 600;
}

/* Chart tweaks */
.chart-container {
	position: relative;
}

/* Dark mode overrides */
[data-bs-theme='dark'] body {
	background-color: #0f172a;
}

[data-bs-theme='dark'] .bg-white {
	background-color: transparent !important;
}

[data-bs-theme='dark'] .attendance-stat-row,
[data-bs-theme='dark'] .leave-item-admin {
	background-color: rgba(255, 255, 255, 0.05);
}

/* Recent Payslips Redesign & Widget Headers */
.widget-header {
	border-bottom: 1px solid rgba(var(--bs-secondary-rgb), 0.1);
	padding-bottom: 15px;
	margin-bottom: 20px;
}

[data-bs-theme='dark'] .widget-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-icon {
	width: 32px;
	height: 32px;
}

.payslip-item {
	background: var(--bs-card-bg);
	border: 1px solid rgba(var(--bs-secondary-rgb), 0.1);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	transition: all 0.2s;
}

[data-bs-theme='dark'] .payslip-item,
[data-bs-theme='blue-theme'] .payslip-item,
[data-bs-theme='semi-dark'] .payslip-item {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

.payslip-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payslip-month {
	font-size: 0.95rem;
	font-weight: 700;
}

.payslip-net {
	font-size: 0.85rem;
	color: var(--bs-secondary-color);
}

[data-bs-theme='dark'] .payslip-net,
[data-bs-theme='blue-theme'] .payslip-net,
[data-bs-theme='semi-dark'] .payslip-net,
[data-bs-theme='dark'] .payslip-month,
[data-bs-theme='blue-theme'] .payslip-month,
[data-bs-theme='semi-dark'] .payslip-month {
	color: #ffffff !important;
}

.payslip-date {
	font-size: 0.75rem;
	color: var(--bs-secondary-color);
	opacity: 0.7;
}

[data-bs-theme='dark'] .payslip-date,
[data-bs-theme='blue-theme'] .payslip-date,
[data-bs-theme='semi-dark'] .payslip-date {
	color: rgba(255, 255, 255, 0.7) !important;
}

.btn-download-sm {
	padding: 2px 6px;
	font-size: 0.9rem;
	color: #636e72;
	background: transparent;
	border: none;
}

.btn-download-sm:hover {
	color: var(--bs-primary);
}

.badge-paid {
	background-color: #00d084;
	color: white;
	font-size: 0.65rem;
	padding: 4px 10px;
	border-radius: 20px;
}