/**
 * Ladidu Pages - Consolidated CSS
 * This file contains all shared styles for /www pages
 * Extracted from inline styles to enable browser caching
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
	--prussian-blue: #133650;
	--white: #ffffff;
	--raisin-black: #212227;
	--orange-peel: #ff9f1c;
	--light-gray: #f8f9fa;
	--border-gray: #dee2e6;
	--success-green: #10b981;
	--warning-yellow: #f59e0b;
	--danger-red: #ef4444;
	--neutral-gray: #6b7280;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-prussian-blue {
	background-color: var(--prussian-blue);
}

.text-prussian-blue {
	color: var(--prussian-blue);
}

.bg-orange-peel {
	background-color: var(--orange-peel);
}

.text-orange-peel {
	color: var(--orange-peel);
}

.bg-raisin-black {
	background-color: var(--raisin-black);
}

.text-raisin-black {
	color: var(--raisin-black);
}

.text-gray-300 {
	color: #d1d5db;
}

.text-gray-400 {
	color: #9ca3af;
}

.text-gray-500 {
	color: #6b7280;
}

.text-blue-600 {
	color: #2563eb;
	text-decoration: none;
}

.text-blue-600:hover {
	text-decoration: underline;
	color: #1d4ed8;
}

.flex {
	display: flex;
}

.gap-2 {
	gap: 0.5rem;
}

.hidden {
	display: none;
}

/* ========================================
   PROFILE HEADER STYLES
   ======================================== */
.profile-header {
	background: linear-gradient(135deg, var(--prussian-blue), #1e4a5f);
	color: var(--white);
	padding: 2rem 0;
}

.profile-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.profile-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
}

.profile-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
}

.profile-meta-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	color: var(--orange-peel);
}

/* ========================================
   PROFILE CONTENT & SIDEBAR
   ======================================== */
.profile-content {
	padding: 2rem 0;
	background-color: var(--light-gray);
}

.profile-sidebar {
	background: var(--white);
	border-radius: 0.5rem;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-photo-container {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
}

.profile-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto;
	display: block;
}

.profile-photo-placeholder {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: var(--orange-peel);
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

/* ========================================
   PROFILE SECTIONS
   ======================================== */
.profile-section {
	background: var(--white);
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-section-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--prussian-blue);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--orange-peel);
}

.profile-section-content {
	padding-top: 0.5rem;
	color: var(--raisin-black);
	line-height: 1.6;
}

/* ========================================
   TAB STYLES
   ======================================== */
.nav-tabs {
	border-bottom: 2px solid var(--border-gray);
	margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
	border: none;
	color: #6b7280;
	font-weight: 500;
	padding: 0.75rem 1rem;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
}

.nav-tabs .nav-link:hover {
	color: var(--prussian-blue);
	border-color: transparent;
}

.nav-tabs .nav-link.active {
	color: var(--prussian-blue);
	background-color: transparent;
	border-bottom-color: var(--orange-peel);
}

.tab-content {
	padding: 1.5rem 0;
}

/* ========================================
   CARD STYLES
   ======================================== */
.card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	margin-bottom: 1.5rem;
}

.card-header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-bottom: 1px solid #e2e8f0;
	border-radius: 12px 12px 0 0 !important;
	padding: 1.25rem 1.5rem;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--prussian-blue);
}

.card-body {
	padding: 1.25rem;
}

.outlet-card {
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	padding: 1rem;
	margin-bottom: 1rem;
	background-color: var(--white);
}

/* ========================================
   JOB CARD STYLES (Home & Available Jobs)
   ======================================== */
.job-card {
	background: var(--white);
	border-radius: 1rem;
	padding: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.job-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}

.job-company-logo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 2px solid #e5e7eb;
}

.job-company-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.job-company-logo svg {
	color: #9ca3af;
}

.job-header-right {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.job-type-badge {
	background-color: #dbeafe;
	color: #1e40af;
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid #bfdbfe;
}

.job-time-ago {
	font-size: 0.75rem;
	color: #6b7280;
}

.job-company-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--prussian-blue);
	margin-bottom: 0;
}

.job-card .job-title,
h5.job-title {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	color: var(--prussian-blue) !important;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.job-salary {
	font-size: 1rem;
	font-weight: 600;
	color: var(--prussian-blue);
	margin-bottom: 0.75rem;
}

.job-info-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.job-info-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: #f3f4f6;
	color: #374151;
	font-size: 0.75rem;
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
}

.job-info-tag svg {
	color: #6b7280;
}

.job-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
	margin-top: auto;
}

.job-location {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.job-location svg {
	color: #9ca3af;
}

.btn-lamar {
	background-color: var(--prussian-blue);
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	text-decoration: none;
	position: relative;
	z-index: 2;
	transition: background-color 0.2s ease;
}

.btn-lamar:hover {
	background-color: #0e2a3d;
	color: var(--white);
	text-decoration: none;
}

.job-card-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.job-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.job-company-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.25rem;
}

.applied-job-badge {
	background-color: var(--orange-peel);
	color: var(--raisin-black);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.saved-job-badge {
	background-color: #3b82f6;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-primary-ladidu {
	background-color: var(--orange-peel);
	border-color: var(--orange-peel);
	color: var(--white);
}

.btn-primary-ladidu:hover {
	background-color: #e68b00;
	border-color: #e68b00;
}

.btn-secondary-ladidu {
	background-color: var(--prussian-blue);
	border-color: var(--prussian-blue);
	color: var(--white);
}

.btn-secondary-ladidu:hover {
	background-color: #0e2a3d;
	border-color: #0e2a3d;
}

.btn-ladidu-primary {
	background-color: #f97316;
	color: white;
	border: 1px solid #f97316;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	cursor: pointer;
}

.btn-ladidu-primary:hover {
	background-color: #ea580c;
	border-color: #ea580c;
	color: white;
	text-decoration: none;
}

.btn-ladidu-secondary {
	background-color: #10b981;
	color: white;
	border: 1px solid #10b981;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	cursor: pointer;
}

.btn-ladidu-secondary:hover {
	background-color: #059669;
	border-color: #059669;
	color: white;
	text-decoration: none;
}

.btn-ladidu-outline {
	background-color: transparent;
	color: #334155;
	border: 1px solid #cbd5e1;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	cursor: pointer;
}

.btn-ladidu-outline:hover {
	background-color: #334155;
	color: white;
	border-color: #334155;
	text-decoration: none;
}

/* Icon buttons */
.icon-btn {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
}

.icon-btn:hover {
	background-color: rgba(255, 159, 28, 0.1);
}

.icon-btn svg {
	width: 24px;
	height: 24px;
	color: var(--orange-peel);
}

.edit-icon {
	color: var(--orange-peel);
	width: 20px;
	height: 20px;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.btn-close {
	opacity: 0.8;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.btn-close:hover {
	opacity: 1;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header .btn-close {
	padding: 0.5rem;
	margin: -0.5rem -0.5rem -0.5rem auto;
}

.custom-close-button {
	background: none;
	border: none;
	padding: 0.25rem;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-close-button:hover {
	opacity: 1;
}

.custom-close-button svg {
	color: #000;
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-group {
	margin-bottom: 1rem;
}

.logo-visible {
	display: block;
}

.logo-hidden {
	display: none;
}

.placeholder-visible {
	display: flex;
}

.placeholder-hidden {
	display: none;
}

.file-input-hidden {
	display: none;
}

/* ========================================
   JOBS SECTION HEADER
   ======================================== */
.jobs-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #fed7aa;
}

.jobs-section-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #334155;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}

.jobs-section-icon {
	color: #f97316;
}

.jobs-count-badge {
	background-color: #f1f5f9;
	color: #475569;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Legacy support */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 0 0.5rem;
}

.section-title {
	color: var(--prussian-blue);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Home page section titles - centered and larger */
.jobs-section .section-title,
.partners-section .section-title,
h2.section-title {
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	text-align: center !important;
	justify-content: center !important;
	margin-bottom: 2.5rem !important;
	display: block !important;
}

/* ========================================
   TABLE STYLES
   ======================================== */
.jobs-table-wrapper {
	background-color: white;
	border-radius: 0.5rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.table-responsive-wrapper {
	overflow-x: auto;
}

.jobs-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.jobs-table thead {
	background-color: #1e293b;
}

.jobs-table thead th {
	padding: 1rem 1.5rem;
	text-align: left;
	font-size: 0.75rem;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 0;
	white-space: nowrap;
}

.jobs-table tbody {
	background-color: white;
}

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

.jobs-table tbody tr:hover {
	background-color: #f9fafb;
}

.jobs-table tbody td {
	padding: 1rem 1.5rem;
	white-space: nowrap;
	font-size: 0.875rem;
	color: #111827;
	border: 0;
	vertical-align: middle;
}

.jobs-table tbody td.font-medium {
	font-weight: 600;
	color: #111827;
}

/* ========================================
   FILTER STYLES
   ======================================== */
.jobs-filter-section {
	background-color: #f9fafb;
	padding: 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.filter-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.filter-group {
	display: flex;
	flex-direction: column;
	min-width: 150px;
}

.filter-group label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.25rem;
}

.filter-group select {
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	background-color: white;
}

.filter-group select:focus {
	outline: none;
	box-shadow: 0 0 0 2px #f97316;
}

.filter-actions {
	display: flex;
	gap: 0.5rem;
	margin-left: auto;
}

.action-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

/* ========================================
   STATUS BADGES
   ======================================== */
.status-applied {
	background-color: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

.status-shortlisted {
	background-color: #fffbeb;
	color: #a16207;
	border: 1px solid #fde68a;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

.status-hired {
	background-color: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

.status-rejected {
	background-color: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

.status-active {
	background-color: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

.status-completed {
	background-color: #faf5ff;
	color: #7c3aed;
	border: 1px solid #d8b4fe;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 9999px;
	display: inline-block;
}

/* Status action buttons */
.status-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.btn-status-change {
	background: none;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	padding: 0.25rem 0.5rem;
	cursor: pointer;
	font-size: 0.75rem;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
}

.btn-status-change:hover {
	border-color: #9ca3af;
	background-color: #f9fafb;
}

.btn-shortlist {
	color: #f59e0b;
	border-color: #fbbf24;
}

.btn-shortlist:hover {
	background-color: #fef3c7;
	border-color: #f59e0b;
}

.btn-hire {
	color: #10b981;
	border-color: #34d399;
}

.btn-hire:hover {
	background-color: #d1fae5;
	border-color: #10b981;
}

.btn-reject {
	color: #ef4444;
	border-color: #f87171;
}

.btn-reject:hover {
	background-color: #fef2f2;
	border-color: #ef4444;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination-wrapper {
	background-color: #f9fafb;
	padding: 0.75rem 1rem;
	border-top: 1px solid #e5e7eb;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pagination-controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.page-numbers {
	display: flex;
	gap: 0.25rem;
}

.pagination-btn {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	background-color: white;
	color: #374151;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
	background-color: #f97316;
	border-color: #f97316;
	color: white;
}

.pagination-btn.active {
	background-color: #334155;
	border-color: #334155;
	color: white;
}

.pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #f3f4f6;
}

/* FontAwesome fallback */
.pagination-btn .fallback-text {
	display: none;
	font-size: 1.2em;
	font-weight: bold;
}

/* Show fallback text if FontAwesome icons fail to load */
.pagination-btn:not(.fa-loaded) .fas {
	display: none;
}

.pagination-btn:not(.fa-loaded) .fallback-text {
	display: inline;
}

.pagination-info {
	font-size: 0.875rem;
	color: #4b5563;
	font-weight: 500;
}

.per-page-selector {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 1rem;
}

.per-page-selector label {
	font-size: 0.875rem;
	color: #4b5563;
}

.per-page-selector select {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	background-color: white;
}

/* ========================================
   LOADING & EMPTY STATES
   ======================================== */
.jobs-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	color: #6b7280;
}

.jobs-empty-state {
	text-align: center;
	padding: 3rem 1rem;
	color: #6b7280;
}

.jobs-empty-state i {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.jobs-empty-state h3,
.jobs-empty-state h5 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #374151;
}

.jobs-empty-state p {
	margin-bottom: 1.5rem;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   JOB DETAILS PAGE
   ======================================== */
.job-header {
	background-color: var(--prussian-blue);
	padding: 3rem 0;
	color: var(--white);
}

.job-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--white);
}

.job-type-badge {
	background-color: var(--orange-peel);
	color: var(--white);
	font-size: 0.875rem;
	padding: 0.35rem 0.75rem;
	border-radius: 0.25rem;
	display: inline-block;
	margin-bottom: 0.75rem;
}

.job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.job-meta-item {
	display: flex;
	align-items: center;
}

.job-meta-icon {
	width: 20px;
	height: 20px;
	margin-right: 0.5rem;
	color: var(--orange-peel);
}

.job-meta-badge {
	background-color: var(--orange-peel);
	color: var(--white);
	font-size: 0.875rem;
	padding: 0.35rem 0.75rem;
	border-radius: 0.25rem;
	display: inline-block;
}

.job-content {
	padding: 2rem 0;
}

.job-description {
	margin-bottom: 2rem;
}

.job-section {
	margin-bottom: 2rem;
}

.job-section-title {
	color: var(--prussian-blue);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--orange-peel);
}

.job-section-content {
	color: var(--raisin-black);
	line-height: 1.6;
}

.job-sidebar {
	background-color: #f8f9fa;
	border-radius: 0.5rem;
	padding: 1.5rem;
}

.job-sidebar-section {
	margin-bottom: 1.5rem;
}

.job-sidebar-title {
	color: var(--prussian-blue);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Company info */
.company-info {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.company-logo {
	width: 60px;
	height: 60px;
	border-radius: 0.25rem;
	margin-right: 1rem;
	background-color: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.company-logo-placeholder {
	color: var(--prussian-blue);
	font-size: 1.5rem;
	font-weight: 700;
}

.company-details {
	flex: 1;
}

.company-name {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

/* Apply/Save buttons */
.apply-btn {
	display: block;
	width: 100%;
	background-color: var(--orange-peel);
	color: var(--white);
	border: none;
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
	margin-bottom: 1rem;
}

.apply-btn:hover {
	background-color: #e68b00;
	color: var(--white);
	text-decoration: none;
}

.save-btn {
	display: block;
	width: 100%;
	background-color: var(--white);
	color: var(--prussian-blue);
	border: 1px solid var(--prussian-blue);
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.save-btn:hover {
	background-color: var(--prussian-blue);
	color: var(--white);
	text-decoration: none;
}

.save-btn.saved {
	background-color: var(--prussian-blue);
	color: var(--white);
}

.save-btn .icon {
	margin-right: 0.5rem;
}

/* Back link */
.back-link {
	display: inline-flex;
	align-items: center;
	color: var(--orange-peel);
	font-weight: 500;
	text-decoration: none;
	margin-bottom: 1rem;
}

.back-link:hover {
	color: #e68b00;
	text-decoration: none;
}

.back-link-icon {
	width: 16px;
	height: 16px;
	margin-right: 0.5rem;
}

/* Related jobs */
.related-jobs {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e9ecef;
}

.related-jobs-title {
	color: var(--prussian-blue);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.related-job-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	cursor: pointer;
	position: relative;
}

.related-job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-job-title {
	font-weight: 600;
	color: var(--prussian-blue);
	margin-right: 80px;
}

.related-job-type {
	background-color: var(--orange-peel);
	color: var(--white);
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	position: absolute;
	top: 15px;
	right: 15px;
}

.card-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.card-info-icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	flex-shrink: 0;
	color: var(--prussian-blue);
	opacity: 0.7;
}

.card-info-text {
	font-size: 0.875rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.job-footer {
	margin-top: auto;
	border-top: 1px solid #eee;
	padding-top: 0.75rem;
}

.job-card-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
	background-color: #133650;
	color: white;
	padding: 2rem 0;
	margin-bottom: 2rem;
}

.page-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}

.page-subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0.5rem 0 0 0;
}

/* Breadcrumb */
.breadcrumb {
	background: transparent;
	padding: 0;
	margin-top: 1rem;
}

.breadcrumb-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.breadcrumb-item a:hover {
	color: white;
}

.breadcrumb-item.active {
	color: white;
}

/* Header job info */
.header-job-info {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-info-item {
	display: flex;
	flex-direction: column;
}

.header-info-label {
	font-size: 0.75rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
}

.header-info-value {
	font-size: 1rem;
	font-weight: 600;
	color: white;
}

/* ========================================
   SUMMARY CARDS
   ======================================== */
.summary-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.summary-card {
	background: white;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid #e5e7eb;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.1);
}

.summary-card-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.summary-card-value {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.summary-card-label {
	font-size: 0.875rem;
	color: var(--neutral-gray);
	font-weight: 500;
}

.summary-confirmed {
	border-left: 4px solid var(--success-green);
}

.summary-confirmed .summary-card-icon {
	color: var(--success-green);
}

.summary-pending {
	border-left: 4px solid var(--warning-yellow);
}

.summary-pending .summary-card-icon {
	color: var(--warning-yellow);
}

.summary-absent {
	border-left: 4px solid var(--danger-red);
}

.summary-absent .summary-card-icon {
	color: var(--danger-red);
}

/* ========================================
   JOB INFO STYLES
   ======================================== */
.job-info {
	background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
	border: 1px solid #fcd34d;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.job-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.job-info-item:last-child {
	margin-bottom: 0;
}

.job-info-label {
	font-weight: 600;
	color: var(--prussian-blue);
	min-width: 120px;
}

.job-info-value {
	color: var(--raisin-black);
}

/* ========================================
   ALERT STYLES
   ======================================== */
.alert {
	margin-bottom: 1rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

/* ========================================
   ERROR CONTAINER
   ======================================== */
.error-container {
	text-align: center;
	padding: 5rem 0;
}

.error-title {
	color: var(--prussian-blue);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.error-message {
	color: var(--raisin-black);
	margin-bottom: 2rem;
}

/* ========================================
   WORKER CHECKIN STYLES
   ======================================== */
.checkin-container {
	max-width: 480px;
	margin: 0 auto;
	background: white;
	min-height: 100vh;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.back-button {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	padding: 0.5rem;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.3);
}

.status-card {
	background: white;
	margin: -1rem 1rem 1rem;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.status-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.status-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.status-subtitle {
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.location-section {
	background: white;
	margin: 1rem;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.location-icon {
	font-size: 1.5rem;
	margin-right: 0.75rem;
	color: var(--orange-peel);
}

.location-title {
	font-weight: 600;
	font-size: 1.1rem;
}

.location-status {
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.8rem;
	font-weight: 500;
	margin-left: auto;
}

.location-status.valid {
	background: #dcfce7;
	color: #166534;
}

.location-status.invalid {
	background: #fef2f2;
	color: #dc2626;
}

.location-status.loading {
	background: #fef3c7;
	color: #92400e;
}

.location-details {
	background: #f8fafc;
	padding: 1rem;
	border-radius: 0.5rem;
	margin-top: 1rem;
}

.location-text {
	font-size: 0.9rem;
	color: #374151;
	margin-bottom: 0.5rem;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
	.profile-header {
		padding: 1.5rem 0;
	}

	.profile-title {
		font-size: 1.5rem;
	}

	.job-header {
		padding: 2rem 0;
	}

	.job-title {
		font-size: 1.5rem;
	}

	.job-meta {
		gap: 1rem;
	}

	.job-sidebar {
		margin-top: 2rem;
	}

	.jobs-table th,
	.jobs-table td {
		padding: 0.5rem;
		font-size: 0.75rem;
	}

	.filter-group {
		width: 100%;
		min-width: 0;
	}

	.jobs-filter-section {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-actions {
		width: 100%;
		justify-content: center;
		margin-top: 0.75rem;
		margin-left: 0;
	}

	.pagination-controls {
		flex-direction: column;
		gap: 1rem;
	}

	.per-page-selector {
		margin-left: 0;
	}

	.action-buttons {
		gap: 0.25rem;
		flex-direction: column;
		align-items: stretch;
	}

	.action-buttons a {
		text-align: center;
		font-size: 0.75rem;
		padding: 0.375rem 0.75rem;
	}

	.jobs-table thead th.hide-on-mobile,
	.jobs-table tbody td.hide-on-mobile {
		display: none;
	}
}

/* Hide certain columns on mobile */
@media (max-width: 640px) {
	.hide-on-mobile {
		display: none;
	}
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
	.jobs-pagination,
	.filter-actions,
	.table-action-btn {
		display: none;
	}
}
