body {
	/* background: linear-gradient(
		-45deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(221, 213, 234, 0.45) 5%,
		rgba(210, 200, 227, 0.5) 15%,
		rgba(255, 255, 255, 1) 20%,
		rgba(190, 175, 215, 0.5) 30%,
		rgba(255, 255, 255, 1) 60%,
		rgba(190, 175, 215, 0.25) 70%,
		rgba(255, 255, 255, 1) 80%,
		rgba(210, 200, 227, 0.3) 90%,
		rgba(221, 213, 234, 0.35) 95%,
		rgba(255, 255, 255, 1) 100%
	); */
	overflow-x: hidden;
	background-image: url("../img/hype-theme/desktop-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	min-height: 100vh;
}
@media (max-width: 768px) {
	body {
		background-image: url("../img/hype-theme/mobile-bg.jpg");
		background-attachment: scroll;
	}
}
.custom-card-booking {
	min-height: 1000px !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.custom-card-pickup {
	min-height: 720px !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.card-resi-header {
	max-height: 450px !important;
	max-width: 900px !important;
}
.card-resi-searchbox {
	max-height: 450px !important;
	max-width: 900px !important;
}
.card-resi-timeline {
	max-height: 920px !important;
	max-width: 900px !important;
}

.btn-purple {
	background-color: #4f4caf !important;
	border-color: #4f4caf !important;
	color: white !important;
}
.btn-submit {
	background-color: #4caf72 !important;
	border-color: #4caf72 !important;
	color: white !important;
}
.swal-loading-popup {
	padding: 20px;
}
/* Error message styles */
.error-message {
	display: none;
	padding: 12px 15px;
	border-radius: 8px;
	margin-top: 15px;
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	animation: shake 0.5s ease;
}

.error-icon {
	margin-right: 8px;
	font-size: 1.1em;
}

.input-error {
	border-color: #dc3545 !important;
	background-color: #fff8f8;
}

.input-error:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.no-results {
	text-align: center;
	max-width: 900px !important;
	padding: 40px 20px;
	display: none;
}

.no-results i {
	font-size: 4rem;
	color: #6c757d;
	margin-bottom: 20px;
}

/* Timeline */
.timeline {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.timeline p {
	width: 250px !important;
	white-space: normal !important;
	word-wrap: break-word !important;
}

.timeline li {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.timeline li:last-child {
	margin-bottom: 0;
}

.timeline-icon {
	position: relative;
	z-index: 2;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	flex-shrink: 0;
	margin: 0 15px;
}

/* Main vertical line */
.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(150px + 23px);
	width: 2px;
	background: #dee2e6;
	z-index: 1;
}

.timelineTitle {
	font-size: 24px !important;
}
.subTimelineTitle {
	font-size: 16px !important;
}

/* 📱 responsive mobile */
@media (max-width: 768px) {
	.timelineTitle {
		font-size: 20px !important;
	}
	.subTimelineTitle {
		font-size: 14px !important;
	}
	.timeline::before {
		left: 14px;
	}

	.timeline li {
		flex-direction: row;
		padding-left: 40px;
	}

	.timeline-icon {
		position: absolute;
		left: 6px;
		margin: 0;
	}

	.date-container {
		width: 100px !important;
		text-align: right !important;
		padding-right: 15px !important;
	}

	.timeline-content {
		margin-left: 15px;
		flex: 1;
	}
}

/* Badge styles */
.badge {
	padding: 8px 12px;
	font-weight: 500;
	width: 250px !important;
	border-radius: 3px !important;
}
@media (max-width: 460px) {
	.badge {
		width: 125px !important;
		white-space: normal !important;
		word-wrap: break-word !important;
		text-align: center;
	}
	.timeline-content p {
		width: 125px !important;
		font-size: 8px !important;
	}
}
.bg-green {
	background-color: #27c840 !important;
}
.bg-teal {
	background-color: #20c997 !important;
}

/* Header styles */
.card-header h3 {
	font-weight: 700;
}

/* Form styles */
.form-control {
	border-radius: 8px;
	padding: 12px;
	border: 1px solid #ced4da;
}

.form-label {
	font-weight: 600;
	color: #495057;
}

/* Animation for timeline items */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.timeline li {
	animation: fadeIn 0.5s ease-out;
}

.timeline li:nth-child(1) {
	animation-delay: 0.1s;
}
.timeline li:nth-child(2) {
	animation-delay: 0.2s;
}
.timeline li:nth-child(3) {
	animation-delay: 0.3s;
}
.timeline li:nth-child(4) {
	animation-delay: 0.4s;
}
/* Icon Animation */
.icon-bounce {
	display: inline-block;
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}
