/* RateHawk Customer Portal Styling */

.rh-portal-container {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	max-width: 1000px;
	margin: 30px auto;
}

.rh-auth-box {
	max-width: 420px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border: 1px solid #e2e8f0;
	overflow: hidden;
}

.rh-auth-tabs {
	display: flex;
	border-bottom: 1px solid #e2e8f0;
	background: #f8fafc;
}

.rh-auth-tab {
	flex: 1;
	padding: 16px;
	background: none;
	border: none;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: all 0.2s ease;
}

.rh-auth-tab.active {
	background: #ffffff;
	color: #4f46e5;
	border-bottom: 2px solid #4f46e5;
}

.rh-auth-form {
	padding: 24px;
}

.rh-field {
	margin-bottom: 16px;
}

.rh-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 6px;
}

.rh-dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 30px;
}

.rh-bookings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.rh-booking-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	position: relative;
}

.rh-booking-status-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;

}

.rh-booking-status-badge.confirmed {
	background: #d1fae5;
	color: #065f46;
}

.rh-booking-status-badge.pending {
	background: #fef3c7;
	color: #92400e;
}

.rh-booking-meta {
	font-size: 13px;
	color: #64748b;
	margin: 15px 0;
}

.rh-booking-meta div {
	margin-bottom: 6px;
}

.rh-booking-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f1f5f9;
	padding-top: 12px;
	margin-top: 12px;
}

.rh-booking-price {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
}
