/*
Theme Name: ELAP Portal Theme
Theme URI: https://example.com/elap-portal-theme
Author: ELAP Development Team
Author URI: https://example.com
Description: Custom theme for Employee Leave & Attendance Portal - Clean, responsive, HR portal design for UAE companies.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elap-theme
Tags: employee-portal, hr, dashboard, responsive, clean, custom-menu, custom-logo, featured-images
*/

/* =============================================================================
   1. CSS Reset & Base
============================================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #1a1a2e;
	background-color: #f0f2f5;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #1a5c2a;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: #2d8a45;
	text-decoration: underline;
}

ul,
ol {
	list-style: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
}

/* =============================================================================
   2. Typography
============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a2e;
	margin-bottom: 0.75rem;
}

h1 { font-size: 1.5rem; }   /* 24px */
h2 { font-size: 1.25rem; }  /* 20px */
h3 { font-size: 1.125rem; } /* 18px */
h4 { font-size: 1rem; }
h5 { font-size: 0.9375rem; }
h6 { font-size: 0.875rem; }

p {
	margin-bottom: 1rem;
}

/* =============================================================================
   3. Layout & Container
============================================================================= */

.site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.portal-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
}

.site-main {
	flex: 1;
	padding: 30px 0;
}

/* =============================================================================
   4. Header
============================================================================= */

.site-header {
	background: linear-gradient(135deg, #1a5c2a 0%, #2d8a45 100%);
	color: #ffffff;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(30, 60, 114, 0.3);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 20px;
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-branding a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #ffffff;
}

.site-branding a:hover {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
}

.custom-logo {
	max-height: 45px;
	width: auto;
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.02em;
	margin: 0;
}

.site-description {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* Navigation */
.main-navigation {
	flex: 1;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation ul li a {
	display: block;
	padding: 8px 16px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	text-decoration: none;
}

/* Header User Info */
.header-user-info {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header-user-info .welcome-message {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
}

.header-user-info .welcome-message strong {
	color: #ffffff;
}

.btn-logout,
.btn-login {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s ease;
	text-decoration: none;
}

.btn-logout {
	background: rgba(220, 53, 69, 0.2);
	color: #ffffff;
	border: 1px solid rgba(220, 53, 69, 0.4);
}

.btn-logout:hover {
	background: rgba(220, 53, 69, 0.4);
	color: #ffffff;
	text-decoration: none;
}

.btn-login {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	text-decoration: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
	padding: 6px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* =============================================================================
   5. Card Component
============================================================================= */

.card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 24px;
	margin-bottom: 24px;
}

.card-header {
	border-bottom: 1px solid #e8ecf0;
	padding-bottom: 16px;
	margin-bottom: 20px;
}

.card-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1a5c2a;
	margin: 0;
}

.card-body {
	padding: 0;
}

/* =============================================================================
   6. Balance Cards Grid
============================================================================= */

.balance-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.balance-card {
	border-radius: 12px;
	padding: 20px 24px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.balance-card::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.balance-card::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: 20px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
}

.balance-card-annual { background: linear-gradient(135deg, #1a5c2a, #2d8a45); }
.balance-card-sick   { background: linear-gradient(135deg, #28a745, #20c997); }
.balance-card-used   { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.balance-card-remaining { background: linear-gradient(135deg, #6f42c1, #e83e8c); }
.balance-card-emergency { background: linear-gradient(135deg, #dc3545, #c82333); }
.balance-card-encashment { background: linear-gradient(135deg, #17a2b8, #138496); }

.balance-card-label {
	font-size: 0.8125rem;
	opacity: 0.88;
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.balance-card-value {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
}

.balance-card-sub {
	font-size: 0.75rem;
	opacity: 0.8;
}

/* =============================================================================
   7. Form Styles
============================================================================= */

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
	margin-bottom: 6px;
}

.form-label .required {
	color: #dc3545;
	margin-left: 2px;
}

.form-control {
	display: block;
	width: 100%;
	padding: 10px 14px;
	font-size: 0.9375rem;
	color: #1a1a2e;
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	appearance: none;
}

.form-control:focus {
	outline: none;
	border-color: #2d8a45;
	box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.15);
}

.form-control::placeholder {
	color: #9ca3af;
}

.form-control:disabled,
.form-control[readonly] {
	background: #f9fafb;
	color: #6b7280;
	cursor: not-allowed;
}

select.form-control {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

textarea.form-control {
	resize: vertical;
	min-height: 100px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.form-hint {
	font-size: 0.8125rem;
	color: #6b7280;
	margin-top: 4px;
}

.form-error {
	font-size: 0.8125rem;
	color: #dc3545;
	margin-top: 4px;
}

/* =============================================================================
   8. Button Styles
============================================================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 20px;
	font-size: 0.9375rem;
	font-weight: 500;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
	white-space: nowrap;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
	transform: translateY(0);
}

.btn:focus {
	outline: 2px solid #2d8a45;
	outline-offset: 2px;
}

.btn-primary {
	background: linear-gradient(135deg, #1a5c2a, #2d8a45);
	color: #ffffff;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #134520, #1a5c2a);
	color: #ffffff;
}

.btn-secondary {
	background: #6c757d;
	color: #ffffff;
}

.btn-secondary:hover {
	background: #5a6268;
	color: #ffffff;
}

.btn-success {
	background: #28a745;
	color: #ffffff;
}

.btn-success:hover {
	background: #218838;
	color: #ffffff;
}

.btn-danger {
	background: #dc3545;
	color: #ffffff;
}

.btn-danger:hover {
	background: #c82333;
	color: #ffffff;
}

.btn-warning {
	background: #ffc107;
	color: #1a1a2e;
}

.btn-warning:hover {
	background: #e0a800;
	color: #1a1a2e;
}

.btn-outline {
	background: transparent;
	color: #1a5c2a;
	border: 1px solid #1a5c2a;
}

.btn-outline:hover {
	background: #1a5c2a;
	color: #ffffff;
}

.btn-sm {
	padding: 6px 14px;
	font-size: 0.8125rem;
}

.btn-lg {
	padding: 13px 28px;
	font-size: 1rem;
}

.btn-block {
	width: 100%;
}

/* =============================================================================
   9. Table Styles
============================================================================= */

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 8px;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.data-table thead {
	background: linear-gradient(135deg, #1a5c2a, #2d8a45);
	color: #ffffff;
}

.data-table thead th {
	padding: 12px 16px;
	text-align: left;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.data-table tbody tr {
	border-bottom: 1px solid #e8ecf0;
	transition: background-color 0.15s ease;
}

.data-table tbody tr:last-child {
	border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
	background-color: #f8fafc;
}

.data-table tbody tr:hover {
	background-color: #eef2f7;
}

.data-table td {
	padding: 12px 16px;
	color: #374151;
	vertical-align: middle;
}

.data-table .no-data {
	text-align: center;
	color: #9ca3af;
	font-style: italic;
	padding: 30px;
}

/* =============================================================================
   10. Status Badges
============================================================================= */

.status-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.status-badge-pending  { background: #fff3cd; color: #856404; }
.status-badge-approved { background: #d4edda; color: #155724; }
.status-badge-rejected { background: #f8d7da; color: #721c24; }
.status-badge-present  { background: #d4edda; color: #155724; }
.status-badge-absent   { background: #f8d7da; color: #721c24; }
.status-badge-late     { background: #fff3cd; color: #856404; }
.status-badge-paid     { background: #d4edda; color: #155724; }

/* =============================================================================
   11. Tabs
============================================================================= */

.elap-tabs {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 24px;
}

.elap-tab-nav {
	display: flex;
	background: #f8fafc;
	border-bottom: 2px solid #e8ecf0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.elap-tab-nav::-webkit-scrollbar {
	display: none;
}

.elap-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #6b7280;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
	margin-bottom: -2px;
}

.elap-tab-btn:hover {
	color: #1a5c2a;
	background: rgba(30, 60, 114, 0.05);
}

.elap-tab-btn.active {
	color: #1a5c2a;
	border-bottom-color: #1a5c2a;
	background: #ffffff;
	font-weight: 600;
}

.elap-tab-content {
	padding: 24px;
}

.elap-tab-panel {
	display: none;
}

.elap-tab-panel.active {
	display: block;
}

/* =============================================================================
   12. Alerts & Notices
============================================================================= */

.notice,
.alert {
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 0.9rem;
	border-left: 4px solid transparent;
}

.notice-success,
.alert-success {
	background: #d4edda;
	color: #155724;
	border-left-color: #28a745;
}

.notice-error,
.alert-error,
.alert-danger {
	background: #f8d7da;
	color: #721c24;
	border-left-color: #dc3545;
}

.notice-warning,
.alert-warning {
	background: #fff3cd;
	color: #856404;
	border-left-color: #ffc107;
}

.notice-info,
.alert-info {
	background: #d1ecf1;
	color: #0c5460;
	border-left-color: #17a2b8;
}

/* =============================================================================
   13. Sidebar
============================================================================= */

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 30px;
	align-items: start;
}

.widget-area {
	position: sticky;
	top: 90px;
}

.widget {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 20px;
	margin-bottom: 20px;
}

.widget-title {
	font-size: 1rem;
	font-weight: 600;
	color: #1a5c2a;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e8ecf0;
}

/* =============================================================================
   14. Footer
============================================================================= */

.site-footer {
	background: linear-gradient(135deg, #0f3318, #1a5c2a);
	color: rgba(255, 255, 255, 0.8);
	padding: 20px 0;
	margin-top: auto;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copyright {
	font-size: 0.875rem;
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.footer-copyright a:hover {
	color: #ffffff;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
	color: #ffffff;
	text-decoration: none;
}

/* =============================================================================
   15. Page & Post Content
============================================================================= */

.entry-header {
	margin-bottom: 24px;
}

.entry-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1a5c2a;
	margin-bottom: 8px;
}

.entry-meta {
	font-size: 0.875rem;
	color: #6b7280;
}

.entry-meta a {
	color: #2d8a45;
}

.entry-content {
	line-height: 1.7;
}

.entry-content p {
	margin-bottom: 1.2rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.entry-content ul,
.entry-content ol {
	list-style: revert;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.entry-content table th,
.entry-content table td {
	border: 1px solid #e8ecf0;
	padding: 10px 14px;
	text-align: left;
}

.entry-content table th {
	background: #f8fafc;
	font-weight: 600;
}

/* =============================================================================
   16. Pagination
============================================================================= */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 20px 0;
	flex-wrap: wrap;
}

.page-numbers,
.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
	background: #ffffff;
	border: 1px solid #e8ecf0;
	transition: all 0.2s ease;
	text-decoration: none;
}

.page-numbers:hover,
.nav-links a:hover {
	background: #1a5c2a;
	color: #ffffff;
	border-color: #1a5c2a;
	text-decoration: none;
}

.page-numbers.current {
	background: #1a5c2a;
	color: #ffffff;
	border-color: #1a5c2a;
}

.page-numbers.dots {
	border: none;
	background: transparent;
}

/* =============================================================================
   17. 404 Page
============================================================================= */

.error-404 {
	text-align: center;
	padding: 80px 20px;
}

.error-404-code {
	font-size: 8rem;
	font-weight: 800;
	color: #1a5c2a;
	line-height: 1;
	opacity: 0.15;
	margin-bottom: -20px;
}

.error-404-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a5c2a;
	margin-bottom: 12px;
}

.error-404-message {
	color: #6b7280;
	font-size: 1.1rem;
	margin-bottom: 30px;
}

/* =============================================================================
   18. ELAP Plugin Shortcode Integration
============================================================================= */

/* Portal container reset for plugin shortcodes */
.elap-portal-wrapper,
.elap-dashboard-wrapper,
.elap-form-wrapper {
	width: 100%;
}

/* Override default WordPress styles for plugin forms */
.elap-portal-wrapper input[type="text"],
.elap-portal-wrapper input[type="email"],
.elap-portal-wrapper input[type="date"],
.elap-portal-wrapper input[type="number"],
.elap-portal-wrapper select,
.elap-portal-wrapper textarea {
	font-family: inherit;
}

/* Salary slip print button area */
.salary-slip-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
}

/* =============================================================================
   19. Loading States
============================================================================= */

.loading-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(30, 60, 114, 0.2);
	border-top-color: #1a5c2a;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* =============================================================================
   20. Utility Classes
============================================================================= */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }

.text-primary { color: #1a5c2a; }
.text-success { color: #28a745; }
.text-danger  { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-muted   { color: #6b7280; }

.fw-bold   { font-weight: 700; }
.fw-medium { font-weight: 500; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.d-none    { display: none; }
.d-block   { display: block; }
.d-flex    { display: flex; }
.d-grid    { display: grid; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* =============================================================================
   21. Responsive - Mobile (max-width: 768px)
============================================================================= */

@media (max-width: 768px) {
	.portal-container {
		padding: 0 16px;
	}

	.header-inner {
		height: auto;
		padding: 12px 0;
		flex-wrap: wrap;
		gap: 12px;
	}

	.site-branding .site-description {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.main-navigation {
		width: 100%;
		order: 3;
	}

	.main-navigation.toggled ul {
		display: flex;
		flex-direction: column;
		gap: 2px;
		padding: 8px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.main-navigation:not(.toggled) ul {
		display: none;
	}

	.main-navigation ul li a {
		padding: 10px 12px;
	}

	.header-user-info .welcome-message {
		display: none;
	}

	.site-main {
		padding: 16px 0;
	}

	.balance-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.content-sidebar-wrap {
		grid-template-columns: 1fr;
	}

	.widget-area {
		position: static;
	}

	.entry-title {
		font-size: 1.375rem;
	}

	.elap-tab-nav {
		-webkit-overflow-scrolling: touch;
	}

	.elap-tab-btn {
		padding: 12px 14px;
		font-size: 0.8125rem;
	}

	.data-table th,
	.data-table td {
		padding: 10px 12px;
		font-size: 0.85rem;
	}

	.footer-inner {
		flex-direction: column;
		text-align: center;
	}

	.error-404-code {
		font-size: 5rem;
	}
}

@media (max-width: 480px) {
	.balance-cards-grid {
		grid-template-columns: 1fr;
	}

	.balance-card-value {
		font-size: 1.75rem;
	}
}

/* =============================================================================
   22. Print Styles (Salary Slips)
============================================================================= */

@media print {
	.site-header,
	.site-footer,
	.main-navigation,
	.btn,
	.no-print {
		display: none !important;
	}

	body {
		background: #ffffff;
		color: #000000;
		font-size: 12pt;
	}

	.portal-container {
		max-width: 100%;
		padding: 0;
	}

	.site-main {
		padding: 0;
	}

	.card {
		box-shadow: none;
		border: 1px solid #cccccc;
		page-break-inside: avoid;
	}

	.data-table {
		border-collapse: collapse;
	}

	.data-table th,
	.data-table td {
		border: 1px solid #cccccc;
	}

	.data-table thead {
		background: #1a5c2a !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	a::after {
		content: none;
	}
}
