.bg-gradient-baa {
	background: linear-gradient(180deg, #116868 10%, #116868 100%);
}
/* ===============================
   GUEST PAGE STYLE
   =============================== */

body {
	min-height: 100vh;
	background: linear-gradient(135deg, #116868, #1fa2a6);
	font-family: "Nunito", sans-serif;
}

.guest-wrapper {
	animation: fadeSlide 1s ease;
}

@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.guest-title {
	color: #fff;
}

.outer-box {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 40px;
	backdrop-filter: blur(6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.guest-card {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	padding: 45px 25px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	height: 100%;
	transition: all 0.35s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.guest-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.35),
		transparent
	);
	transition: 0.6s;
}

.guest-card:hover::before {
	left: 100%;
}

.guest-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.guest-card i {
	font-size: 30px;
	margin-bottom: 15px;
	display: block;
}

.sidebar .collapse-inner {
	max-height: 180px;
	overflow-y: auto;
}

.sidebar {
	overflow: visible;
}

/* CLICK ANIMATION */
.guest-card.clicked {
	transform: scale(0.95);
	opacity: 0.8;
}

.guest-card .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	transform: scale(0);
	animation: ripple 0.6s linear;
	pointer-events: none;
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}

.status-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.status-label {
	font-weight: 600;
	color: #6c757d;
}

.badge-status {
	font-size: 16px;
	padding: 10px 18px;
	border-radius: 30px;
	font-weight: 600;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	font-weight: 600;
	border-radius: 8px;
}

.btn-action {
	width: 48%;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.btn-action:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ================= STATUS SOFT (BLEND DENGAN FORM) ================= */
.status-soft {
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 20px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* warna lembut */
.status-warning {
	background-color: #fff4d6;
	color: #856404;
}

.status-info {
	background-color: #e7f1ff;
	color: #0c63e4;
}

.status-success {
	background-color: #e6f4ea;
	color: #146c43;
}
