/* Modern Bookings List Styling */
.milestone-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px auto;
	padding: 5px;
	position: relative;
	width: 100%;
	min-width: 300px;
	cursor: pointer;
}

/* Vehicle-specific styling */
.vehicle-reg {
	font-size: 1rem;
	color: #6c757d;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.vehicles-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--Page-label);
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.vehicles-btn:hover {
	background: #2980b9;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
	color: white;
	text-decoration: none;
}

.status-badge.expiring {
	background: #fff3cd;
	color: #856404;
	border: 1px solid #856404;
	/* width: 50%; */
	text-align: center;
}

.status-badge.valid {
	/* background: rgb(245, 245, 245); */
	color: gray;
	border: 1px solid lightgray;
	/* width: 50%; */
	text-align: center;

}

.notification-banner {
	/* background: #25d366; */
	background: #30D14D;
	border-radius: 8px;
	padding: 8px 10px;
	margin-bottom: 1rem;
	border-left: 8px solid darkgreen;
	border-top: 1px solid darkgreen;
	border-bottom: 1px solid darkgreen;
	border-right: 1px solid darkgreen;
	/* center contents */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: black 1px 1px 5px;
}

.clear-notification-btn {
	margin: 0px;
	padding: 0px.25rem 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: white;
	/*color: #F44E12 */
	text-decoration: none;
	text-shadow: black 1px 1px 2px;
	font-weight: 500;
	width: 100%;
}

.clear-notification-btn:hover {
	color: silver;
	text-decoration: none;
}

.collection-notice {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #2e7d32;
	font-weight: 600;
	background: #e8f5e9;
	padding: 0.5rem;
	border-radius: 6px;
	border: 1px solid #a5d6a7;
}

.current-status.booking {
	background: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #2e7d32;
}

.current-status.completed {
	background: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #2e7d32;
}

.status-display {
	background: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #2e7d32;
}

.vehicle-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1rem;
}

.action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #f8f9fa;
	border: 1px solid #d0d7de;
	border-radius: 8px;
	color: #1f2933;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.action-btn:hover {
	background: #e9ecef;
	color: #0f1720;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:focus-visible,
.add-booking-btn:focus-visible,
.create-booking-btn:focus-visible,
.approve-btn:focus-visible {
	outline: 3px solid #0d6efd;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.action-btn.bookings {
	background: #0d6efd;
	border-color: #0b5ed7;
	color: #ffffff;
}

.action-btn.bookings:hover {
	background: #0b5ed7;
	color: #ffffff;
}

.action-btn.fuel {
	background: #dc3545;
	border-color: #b02a37;
	color: #ffffff;
}

.action-btn.fuel:hover {
	background: #b02a37;
	color: #ffffff;
}

/* Enhanced Fuel Dashboard */
.fuel-dashboard {
	margin-bottom: 2rem;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.stat-card {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid silver;
	/* transition: all 0.3s ease; */
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3498db, #2980b9);
}

.stat-card.weekly::before {
	background: linear-gradient(90deg, #3498db, #2980b9);
}

.stat-card.monthly::before {
	background: linear-gradient(90deg, #27ae60, #229954);
}

.stat-card.average::before {
	background: linear-gradient(90deg, #f39c12, #e67e22);
}

.stat-card.efficiency::before {
	background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.stat-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	flex-shrink: 0;
}

.stat-card.weekly .stat-icon {
	background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-card.monthly .stat-icon {
	background: linear-gradient(135deg, #27ae60, #229954);
}

.stat-card.average .stat-icon {
	background: linear-gradient(135deg, #f39c12, #e67e22);
}

.stat-card.efficiency .stat-icon {
	background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.stat-period {
	font-size: 1rem;
	font-weight: 600;
	color: #2c3e50;
	flex: 1;
}

.stat-content {
	margin-bottom: 1rem;
}

.primary-stat {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1;
}

.stat-unit {
	font-size: 0.9rem;
	font-weight: 500;
	color: #7f8c8d;
}

.secondary-stat {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cost-amount {
	font-size: 1.1rem;
	font-weight: 600;
	color: #27ae60;
}

.cost-label {
	font-size: 0.85rem;
	color: #95a5a6;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-trend {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 0.85rem;
	color: #6c757d;
}

.stat-trend i {
	color: #27ae60;
	font-size: 0.9rem;
}

/* Trend-specific styling */
.trend-up {
	color: #e74c3c !important;
}

.trend-down {
	color: #27ae60 !important;
}

.stat-trend .trend-up {
	font-weight: 600;
}

.stat-trend .trend-down {
	font-weight: 600;
}

.fuel-summary-banner {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	padding: 2rem;
	color: white;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
	position: relative;
	overflow: hidden;
}

.fuel-summary-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	pointer-events: none;
}

.summary-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.summary-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	flex-shrink: 0;
}

.summary-text {
	flex: 1;
}

.summary-text h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.summary-text p {
	margin: 0;
	font-size: 1.1rem;
	opacity: 0.9;
	line-height: 1.5;
}

.summary-actions {
	display: flex;
	align-items: center;
}

.summary-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.summary-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

.fuel-history-title {
	font-size: 1.5rem;
	font-weight: 300;
	color: #2c3e50;
	margin: 0;
}

.fuel-grid {
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.fuel-card {
	border-left: 4px solid #e74c3c;
}

.fuel-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #2c3e50;
	font-weight: 600;
}

.fuel-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fuel-stat {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.fuel-stat.primary {
	background: #e8f4fd;
	border: 1px solid #bee5eb;
}

.fuel-stat.secondary {
	background: #e8f5e8;
	border: 1px solid #c3e6cb;
}

.fuel-stat.calculated {
	background: #fff3e0;
	border: 1px solid #ffcc02;
}

.fuel-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.fuel-stat.primary .fuel-icon {
	background: #3498db;
	color: white;
}

.fuel-stat.secondary .fuel-icon {
	background: #27ae60;
	color: white;
}

.fuel-stat.calculated .fuel-icon {
	background: #f39c12;
	color: white;
}

.fuel-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.fuel-label {
	font-size: 0.85rem;
	color: #6c757d;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.fuel-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
}

/* Responsive adjustments for fuel */
@media (max-width: 768px) {
	.dashboard-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat-card {
		padding: 1rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.fuel-grid {
		grid-template-columns: 1fr;
	}

	.summary-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.summary-text h4 {
		font-size: 1.25rem;
	}

	.summary-text p {
		font-size: 1rem;
	}

	.fuel-summary-banner {
		padding: 1.5rem;
	}
}

/* Modern Table Styling */
.modern-table-container {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #f0f0f0;
}

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

.modern-table thead {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.modern-table th {
	padding: 1rem 0.75rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
}

.modern-table th i {
	margin-right: 0.5rem;
	opacity: 0.9;
}

.modern-table tbody tr {
	transition: all 0.3s ease;
	border-bottom: 1px solid #f8f9fa;
}

.modern-table tbody tr:hover {
	background: #f8f9fa;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.modern-table td {
	padding: 1rem 0.75rem;
	vertical-align: middle;
	border: none;
}

.date-cell {
	font-weight: 500;
	color: #2c3e50;
}

.quantity-cell {
	font-weight: 600;
	color: #3498db;
}

.amount-cell {
	font-weight: 600;
	color: #27ae60;
}

.price-cell {
	font-weight: 600;
	color: #f39c12;
}

.actions-cell {
	text-align: center;
}

.edit-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #ecf0f1;
	color: #7f8c8d;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.edit-action-btn:hover {
	background: #3498db;
	color: white;
	text-decoration: none;
	border: 1px solid gray;
	/* transform: scale(1.1); */
}

.empty-row {
	background: #f8f9fa;
}

.empty-cell {
	padding: 3rem 1rem;
	text-align: center;
}

.empty-table-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	color: #6c757d;
}

.empty-table-state i {
	font-size: 3rem;
	color: #bdc3c7;
}

.empty-table-state span {
	font-size: 1.1rem;
	font-weight: 500;
}

.add-fuel-link {
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border: 2px solid #3498db;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.add-fuel-link:hover {
	background: #3498db;
	color: white;
	text-decoration: none;
}

/* Responsive table */
@media (max-width: 768px) {
	.modern-table-container {
		overflow-x: auto;
	}

	.modern-table {
		min-width: 600px;
	}

	.modern-table th,
	.modern-table td {
		padding: 0.75rem 0.5rem;
	}
}

/* Modern Form Styling */
.form-container {
	max-width: 600px;
	margin: 0 auto;
}

.modern-form-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border: 1px solid #f0f0f0;
}

.form-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #f8f9fa;
}

.form-header h3 {
	color: #2c3e50;
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.form-header i {
	font-size: 1.5rem;
	color: #3498db;
}

.modern-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-field {
	display: flex;
	flex-direction: column;
	/* gap: 0.25rem; */
}

.form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 200;
	color: #2c3e50;
	font-size: 0.95rem;
	margin-bottom: 0px;
}

.form-label i {
	color: #3498db;
	font-size: 1.1rem;
}

.form-input {
	padding: 10px 10px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #ffffff;
}

.form-input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
	transform: translateY(-1px);
}

.form-input:hover {
	border-color: #bdc3c7;
}

.form-hint {
	font-size: 0.85rem;
	color: #6c757d;
	font-style: italic;
}

.form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	justify-content: flex-end;
}

.save-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #27ae60;
	color: white;
	border: none;
	padding: 0.875rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.save-btn:hover {
	background: #219a52;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
	color: white;
}

.save-btn.primary {
	background: #3498db;
}

.save-btn.primary:hover {
	background: #2980b9;
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.delete-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #e74c3c;
	color: white;
	border: none;
	padding: 0.875rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.delete-btn:hover {
	background: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.back-btn {
	background: #95a5a6 !important;
}

.back-btn-card {
	/* background: #95a5a6 !important; */
	display: flex;
	align-items: center;
	gap: 3px;
	background: silver;
	color: white;
	text-decoration: none;
	padding: 5px;
	border-radius: 5px;
	font-weight: 100;
}

.back-btn:hover {
	background: #7f8c8d !important;
	box-shadow: 0 4px 8px rgba(149, 165, 166, 0.3) !important;
}

/* Modern Modal Styling */
.modern-modal .modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	/* border-radius: 12px 12px 0 0; */
	border-bottom: none;
}

.modern-modal .modal-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}

.modern-modal .modal-body {
	padding: 2rem;
}

.entry-preview {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1rem;
	margin-top: 1rem;
}

.preview-item {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e9ecef;
}

.preview-item:last-child {
	border-bottom: none;
}

/* QR Scanner Styling */
.qr-scanner-section {
	border: 2px dashed #3498db;
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
	transition: all 0.3s ease;
}

.qr-scanner-section:hover {
	border-color: #2980b9;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.qr-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.qr-text {
	font-size: 1.1rem;
	color: #2c3e50;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.qr-hint {
	font-size: 0.9rem;
	color: #6c757d;
	font-style: italic;
}

.scan-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #3498db;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	margin-top: 1rem;
}

.scan-btn:hover {
	background: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
	color: white;
}

.scan-btn:disabled {
	background: #bdc3c7;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Hidden Fields Styling */
.hidden-fields {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	border: 1px solid #e9ecef;
}

.hidden-field {
	display: none;
}

.field-preview {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e9ecef;
	font-size: 0.9rem;
}

.field-preview:last-child {
	border-bottom: none;
}

.field-label {
	font-weight: 600;
	color: #2c3e50;
}

.field-value {
	color: #6c757d;
	font-family: monospace;
	background: white;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	border: 1px solid #dee2e6;
}

/* Terms and Conditions Section */
.terms-section {
	background: #fff3e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1.5rem;
	border: 1px solid #ffcc02;
	align-items: center;
	justify-content: center;
	display: grid;
}

.terms-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	color: #e65100;
	font-weight: 600;
}

.terms-header i {
	font-size: 1.2rem;
}

.terms-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1rem;
}

.terms-checkbox input[type="checkbox"] {
	margin-top: 0.4rem;
	margin-left: 4px;
	transform: scale(1.5);
	accent-color: #3498db;
}

.terms-text {
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #2c3e50;
}

.terms-text a {
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
}

.terms-text a:hover {
	text-decoration: underline;
}

/* Booking-specific Form Elements */
.booking-form .form-row.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.booking-form .form-row.three-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}

.vehicle-selector {
	background: #e8f4fd;
	border: 2px solid #bee5eb;
	border-radius: 8px;
	padding: 0.875rem 1rem;
}

.vehicle-selector:focus {
	border-color: #3498db;
	background: white;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

.priority-field {
	background: #fff3e0;
	border: 2px solid #ffcc02;
}

.priority-field:focus {
	border-color: #f39c12;
}

/* Status Indicators for Forms */
.form-status-indicator {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 1rem;
	border: 1px solid #e9ecef;
}

.status-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
	color: white;
}

.status-icon.pending {
	background: #f39c12;
}

.status-icon.approved {
	background: #27ae60;
}

.status-icon.in-progress {
	background: #3498db;
}

.status-icon.completed {
	background: #2c3e50;
}

.status-text {
	font-weight: 600;
	color: #2c3e50;
}

/* Responsive Form Design */
@media (max-width: 768px) {
	.modern-form-card {
		padding: 1.5rem;
		margin: 0 1rem;
	}

	.form-actions {
		flex-direction: column;
	}

	.save-btn,
	.delete-btn {
		justify-content: center;
	}

	.booking-form .form-row.two-columns,
	.booking-form .form-row.three-columns {
		grid-template-columns: 1fr;
	}

	.qr-scanner-section {
		padding: 1rem;
	}

	.qr-icon {
		font-size: 2.5rem;
	}
}

/* Vehicle-specific Form Elements */
.input-with-button {
	position: relative;
	display: flex;
	align-items: center;
}

.search-btn {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: #3498db;
	color: white;
	border: none;
	padding: 0.5rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.search-btn:hover {
	background: #2980b9;
	transform: translateY(-50%) scale(1.05);
}

.form-section {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 2px solid #f8f9fa;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.section-title i {
	color: #3498db;
}

.vehicle-info-section {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 5px;
	margin: 0;
	border: 1px solid #e9ecef;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 5px;
}

.info-item {
	background: white;
	border-radius: 6px;
	padding: 5px;
	border: 1px solid #dee2e6;
	transition: all 0.3s ease;
}

.info-item:hover {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

.info-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #6c757d;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	font-size: 1rem;
	font-weight: 500;
	color: #2c3e50;
	font-family: monospace;
}

.vehicle-preview {
	background: #f8f9fa;
	border-radius: 6px;
	padding: 1rem;
	margin: 1rem 0;
	border-left: 4px solid #3498db;
}

.alert {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	border: 1px solid;
	margin: 1rem 0;
}

.alert-warning {
	background: #fff3cd;
	border-color: #ffecb5;
	color: #856404;
}

/* Scanner-specific Styles */
.scanner-section {
	margin-bottom: 2rem;
}

.video-container {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	background: #2c3e50;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.camera-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(44, 62, 80, 0.8);
	color: white;
	pointer-events: none;
}

.camera-overlay i {
	font-size: 4rem;
	opacity: 0.8;
	margin-bottom: 1rem;
}

.scan-frame {
	width: 300px;
	height: 80px;
	border: 3px dashed rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	position: relative;
}

.scan-frame::before,
.scan-frame::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border: 3px solid #3498db;
}

.scan-frame::before {
	top: -3px;
	left: -3px;
	border-right: none;
	border-bottom: none;
}

.scan-frame::after {
	bottom: -3px;
	right: -3px;
	border-left: none;
	border-top: none;
}

.camera-selection {
	margin: 1.5rem 0;
}

.scanner-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.scan-result {
	background: #e8f5e8;
	border: 1px solid #c3e6cb;
	border-radius: 8px;
	padding: 1rem;
	margin-top: 1rem;
	color: #155724;
	font-weight: 600;
}

.alert-message {
	background: #fff3cd;
	border: 1px solid #ffecb5;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	color: #856404;
	text-align: center;
	font-weight: 500;
}

/* Hidden class for camera icon */
.hidden {
	display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.input-with-button .form-input {
		padding-right: 50px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.scanner-actions {
		flex-direction: column;
	}

	.video-container {
		max-width: 100%;
	}
}

.bookings-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
	padding-bottom: 120px;
}

.bookings-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.bookings-header2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: 1rem;
}


.page-title {
	font-size: 2rem;
	font-weight: 300;
	color: #2c3e50;
	margin: 0;
	letter-spacing: -0.5px;
}

.add-booking-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #0d6efd;
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
	border: 1px solid #0b5ed7;
}

.add-booking-btn:hover {
	background: #0b5ed7;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
	color: white;
	text-decoration: none;
}

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

.booking-card {
	background: white;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	/* transition: all 0.3s ease; */
	border: 1px solid silver;
}

.booking-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.booking-title {
	flex: 1;
}

.booking-title h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.status-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 5px;
	font-size: 0.875rem;
	font-weight: 500;
	/* text-transform: uppercase; */
	letter-spacing: 0.5px;
}

.status-badge.completed {
	background: #e8f5e8;
	color: #27ae60;
}

.edit-btn {
	/* color: #7f8c8d; */
	padding: 0.5rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	text-decoration: none;
	font-size: 16px;
	font-style: normal !important;
	background-color: lightgrey;
}

.edit-btn:hover {
	background: #ecf0f1;
	color: #3498db;
}

.status-indicator {
	margin-bottom: 15px;
}

.current-status {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #f8f9fa;
	border-radius: 6px;
	color: #6c757d;
	font-weight: 500;
	font-size: 14px;
	width: 100%;
	text-align: center;
}

.progress-section {
	margin-bottom: 1.5rem;
}

.milestones {
	display: flex;
	/* justify-content: space-evenly; */
}

.milestone {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	position: relative;
}

.milestone.active .milestone-icon {
	font-size: 28px;
	font-weight: bold;
	text-shadow: 0px 0px 2px black;
}

.milestone.active .milestone-label {
	font-size: 18px;
	font-weight: bold;
	color: blue;
	text-shadow: 1px 1px 2px white;
}


.milestone:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 24px;
	right: -50%;
	width: 80%;
	height: 1px;
	background: #e9ecef;
	z-index: 1;
}

.milestone.active:not(:last-child)::after {
	background: #3498db;
}

.milestone-icon {
	height: 45px;
	width: 45px;
	border-radius: 50%;
	background: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
	color: #95a5a6;
	transition: all 0.3s ease;
}

.milestone.active .milestone-icon {
	background: #3498db;
	color: white;
	margin-bottom: 0px !important;
}

.milestone-label {
	font-size: 0.75rem;
	color: #95a5a6;
	font-weight: 500;
}

.milestone.active .milestone-label {
	color: #3498db;
	font-weight: 600;
}

.progress-circle {
	display: flex;
	justify-content: center;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
}

.circular-chart {
	width: 100%;
	height: 100%;
}

.circle-bg {
	fill: none;
	stroke: #e9ecef;
	stroke-width: 2;
}

.circle {
	fill: none;
	stroke: #3498db;
	stroke-width: 2;
	stroke-linecap: round;
	animation: progress 1s ease-in-out forwards;
}

.percentage {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 600;
	color: #3498db;
	font-size: 0.9rem;
}

.approval-section {
	margin: 1.5rem 0;
}

.approve-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.75rem 1rem;
	background: #e74c3c;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
}

.approve-btn:hover {
	background: #c0392b;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
	}
}

.booking-details {
	margin-bottom: 1.5rem;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px 0;
	/* border-bottom: 1px solid #f8f9fa; */
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-item .label {
	color: #6c757d;
	font-size: 14px;
	font-weight: 500;
	/* font-size: 0.9rem; */
}

.detail-item .value {
	color: #2c3e50;
	font-weight: 600;
	font-size: 14px;
}

.cost-breakdown {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 1rem;
}

.cost-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 5px; */
	font-size: 14px;
}

.cost-item.total {
	border-top: 2px solid #dee2e6;
	margin-top: 0.5rem;
	padding-top: 1rem;
	font-weight: 600;
	font-size: 14px;
}

.cost-item .amount {
	font-weight: 600;
	/* color: #27ae60; */
	color: #2c3e50;
	font-size: 14px;
}

.cost-item.total .amount {
	font-size: 16px;
	color: #27ae60;
}

.approval-note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 5px;
	background: #e8f4fd;
	border-radius: 6px;
	color: #3498db;
	font-size: 0.9rem;
}

.no-bookings {
	grid-column: 1 / -1;
}

.empty-state {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.empty-state i {
	font-size: 3rem;
	color: #bdc3c7;
}

.empty-state h2 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
	font-weight: 300;
}

.empty-state p {
	color: #7f8c8d;
	margin-bottom: 2rem;
}

.create-booking-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #0d6efd;
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.create-booking-btn:hover {
	background: #0b5ed7;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.bookings-container {
		padding: 1rem 0.5rem;
		padding-bottom: 100px;
		/* Maintain gutter for footer menu */
	}

	.bookings-header {
		flex-direction: column;
		align-items: stretch;
		display: none;
		/* Hide header on mobile where footer is visible */
	}

	.add-booking-btn {
		justify-content: center;
	}

	.bookings-grid {
		grid-template-columns: 1fr;
	}

	.milestones {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.milestone {
		min-width: 60px;
	}

	/* .milestone:not(:last-child)::after {
		display: none;
	} */
}

/* Remove bottom gutter on larger screens where footer is hidden */
@media screen and (min-width: 1000px) {
	.bookings-container {
		padding-bottom: 2rem;
		/* Reduced padding for desktop since footer is hidden */
	}
}

/* Hide bookings header on smaller screens where footer is visible */
@media screen and (max-width: 999px) {
	.bookings-header {
		display: none;
	}
}

/* Workshop Selection Styling */
.workshop-selection-section {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #e9ecef;
}

.selected-workshop-display,
.no-workshop-display {
	text-align: center;
}

.workshop-header {
	margin-bottom: 1rem;
}

.workshop-header h4 {
	color: #2c3e50;
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.workshop-header i {
	color: #3498db;
}

.workshop-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.workshop-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2c3e50;
	padding: 0.5rem 1rem;
	background: white;
	border-radius: 8px;
	border: 2px solid #3498db;
}

.btn-change-workshop,
.btn-select-workshop {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: #3498db;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-change-workshop:hover,
.btn-select-workshop:hover {
	background: #2980b9;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.no-workshop-display p {
	color: #6c757d;
	margin-bottom: 1rem;
}

/* Workshop Modal Styling */
.workshop-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.workshop-modal-content {
	background: white;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	max-height: 80vh;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.workshop-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid #e9ecef;
	background: #f8f9fa;
}

.workshop-modal-header h5 {
	margin: 0;
	color: #2c3e50;
	font-size: 1.25rem;
	font-weight: 600;
}

.btn-close-modal {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #6c757d;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-close-modal:hover {
	background: #e9ecef;
	color: #495057;
}

.workshop-modal-body {
	padding: 1.5rem;
	max-height: 400px;
	overflow-y: auto;
}

.workshop-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.workshop-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.workshop-item:hover {
	background: #e9ecef;
	border-color: #3498db;
	transform: translateY(-1px);
}

.workshop-item-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.workshop-item-info i {
	color: #3498db;
	font-size: 1.1rem;
}

.workshop-item-name {
	font-weight: 500;
	color: #2c3e50;
}

.btn-select-workshop-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #3498db;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-select-workshop-item:hover {
	background: #2980b9;
	transform: scale(1.05);
}

.no-workshops {
	text-align: center;
	padding: 2rem;
	color: #6c757d;
}

.no-workshops p {
	margin: 0;
	font-size: 1.1rem;
}

/* Mobile responsiveness for workshop selection */
@media (max-width: 768px) {
	.workshop-modal-content {
		width: 95%;
		margin: 1rem;
	}

	.workshop-modal-header,
	.workshop-modal-body {
		padding: 1rem;
	}

	.workshop-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.workshop-item-info {
		width: 100%;
	}

	.btn-select-workshop-item {
		align-self: flex-end;
	}
}

/* What's Next Modal Styling */
.whats-next-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1050;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	animation: fadeIn 0.3s ease;
	padding: 1rem;
	/* Add padding for mobile */
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.whats-next-modal-content {
	background: white;
	/* border-radius: 16px; */
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	animation: slideIn 0.3s ease;
	border: 1px solid #e9ecef;
	margin: auto;
	/* Extra centering insurance */
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-30px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.whats-next-modal-header {
	text-align: center;
	padding: 2rem 2rem 1rem;
	background: linear-gradient(135deg, #e8f5e8 0%, #f8f9fa 100%);
	border-radius: 16px 16px 0 0;
}

.success-icon {
	margin-bottom: 1rem;
}

.success-icon i {
	font-size: 4rem;
	color: #28a745;
	animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.whats-next-modal-header h3 {
	color: #2c3e50;
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
	font-weight: 700;
}

.success-message {
	color: #6c757d;
	margin: 0;
	font-size: 1.1rem;
}

.whats-next-modal-body {
	padding: 2rem;
}

.next-steps-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.next-steps-header h4 {
	color: #2c3e50;
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.next-steps-header i {
	color: #3498db;
}

.steps-timeline {
	margin-bottom: 2rem;
}

.step-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.step-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 20px;
	top: 40px;
	bottom: -24px;
	width: 2px;
	background: linear-gradient(to bottom, #3498db, #e9ecef);
}

.step-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #3498db;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.step-content {
	flex: 1;
	padding-top: 0.25rem;
}

.step-content h5 {
	color: #2c3e50;
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.step-content p {
	color: grey;
	margin: 0;
	line-height: 1.5;
	font-size: 16px !important;
	font-weight: 400;
}

.notification-info {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1.5rem;
	border-left: 4px solid #17a2b8;
}

.info-box {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.info-box i {
	color: #17a2b8;
	font-size: 1.5rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.info-content strong {
	color: #2c3e50;
	font-size: 1.05rem;
	display: block;
	margin-bottom: 0.5rem;
}

.info-content p {
	color: #6c757d;
	margin: 0;
	line-height: 1.5;
	font-size: 16px !important;
	font-weight: 400;
}

.whats-next-modal-footer {
	padding: 1.5rem 2rem 2rem;
	text-align: center;
}

.btn-close-whats-next {
	background: #28a745;
	color: white;
	border: none;
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-close-whats-next:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.btn-close-whats-next:active {
	transform: translateY(0);
}

/* Mobile responsiveness for What's Next Modal */
@media (max-width: 768px) {
	.whats-next-modal-content {
		width: 95%;
		margin: 1rem;
		max-height: 95vh;
	}

	.whats-next-modal-header,
	.whats-next-modal-body,
	.whats-next-modal-footer {
		padding: 1.5rem 1rem;
	}

	.whats-next-modal-header h3 {
		font-size: 1.5rem;
	}

	.success-icon i {
		font-size: 3rem;
	}

	.step-item {
		gap: 0.75rem;
	}

	.step-number {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.step-item:not(:last-child)::after {
		left: 17px;
	}

	.step-content h5 {
		font-size: 1rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}

	.info-box {
		gap: 0.75rem;
	}

	.info-box i {
		font-size: 1.25rem;
	}
}