* {
	padding: 0;
	margin: 0;
}

.quillbooking-meeting {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	max-width: 856px;
	margin: 0 auto;
	margin-top: 2em;
}

.details-container {
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border: 1.05px solid #3333331f;
}

.profile-picture {
	text-align: center;
}

.profile-picture img {
	width: 50px;
	height: 50px;
	margin: auto;
}

.icons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 10px;
}

.icon {
	text-align: center;
	margin-bottom: 1rem;
}

.title {
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	color: #953ae4;
}

.calendar-info {
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	color: #737373;
	padding: 10px 0;
}

.booking-card {
	border: 1px solid #eaeaea;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.booking-card p {
	text-transform: capitalize;
}

.booking-card .event-title {
	font-weight: 700;
	font-size: 18px;
	color: #1a1a1a;
	text-transform: capitalize;
	padding: 10px 0;
}

.booking-card p {
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	margin: 10px 0;
}

.calendar-buttons {
	text-align: center;
	border: 1px solid #eaeaea;
	padding: 1rem;
	border-radius: 8px;
}

.calendar-buttons p {
	font-weight: 500;
	font-size: 20px;
	text-align: center;
}

.calendar-buttons .icons img {
	width: 32px;
	margin: 0 8px;
	vertical-align: middle;
	cursor: pointer;
}

.confirmation-footer {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 40px 48px;
	border: 1.05px solid #3333331f;
}

.change-options {
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}

.cancel-link {
	font-weight: 700;
	font-size: 16px;
	color: #ef4444;
	text-decoration: none;
}

.reschedule-link {
	font-weight: 700;
	font-size: 16px;
	color: #0b69c7;
	text-decoration: none;
}

.cancellation-policy {
	margin-top: 2rem;
	font-weight: 400;
	font-size: 16px;
}

.cancellation-policy h3 {
	font-weight: 700;
	font-size: 16px;
	margin: 10px 0 5px 0;
}

.cancellation-input-container {
	width: 100%;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	color: #737373;
	padding: 10px 0;
}

.cancellation-input-container textarea {
	width: 100%;
	height: 100px;
	border-radius: 8px;
	border: 1px solid #eaeaea;
	padding: 10px;
}

.cancel-btn {
	cursor: pointer;
	color: #ffffff;
	font-weight: 400;
	font-size: 14px;
	border-radius: 100px;
	border: none;
	padding: 12px 24px;
	background-color: #953ae4;
	text-decoration: none;
}

.calendar-buttons-container {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 1rem;
}

.required {
	color: #ef4444;
}

.validation-message {
	color: #d93025;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	display: block;
}

.cancellation-reason.error {
	border-color: #d93025;
	background-color: #fce8e6;
}

.success-message {
	padding: 1rem;
	background-color: #e6f4ea;
	border: 1px solid #34a853;
	border-radius: 4px;
	font-size: 1rem;
	color: #202124;
	margin-top: 1rem;
}

.already-cancelled-message {
	padding: 1rem;
	background-color: #f1f3f4;
	border: 1px solid #dadce0;
	border-radius: 4px;
	font-size: 1rem;
	color: #5f6368;
}

.help-text {
	font-size: 16px;
	color: #6b7280;
}

.link {
	color: #0b69c7;
	text-decoration: underline;
	overflow: hidden;
}

.link:hover {
	text-decoration: none;
}

.icons>a {
	text-decoration: none !important;
}