.invitation-query-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.select-fix {
	min-height: 42px;
	overflow: visible !important;
}

.invitation-query-form {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 25px;
	margin-bottom: 30px;
}

.invitation-query-form h2 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	font-size: 24px;
}

.view-toggle {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.view-toggle-option {
	position: relative;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	padding: 10px 18px;
	cursor: pointer;
	font-weight: 500;
	color: #555;
	transition: all 0.2s ease;
}

.view-toggle-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.view-toggle-option span {
	pointer-events: none;
}

.view-toggle-option.is-active {
	background-color: #2271b1;
	color: #fff;
	border-color: #2271b1;
	box-shadow: 0 3px 8px rgba(34, 113, 177, 0.3);
}

.view-toggle-option:not(.is-active):hover {
	border-color: #2271b1;
	color: #2271b1;
}

.is-hidden {
	display: none !important;
}

.invitation-error {
	background-color: #ffe0e0;
	border: 1px solid #f5b5b5;
	color: #b3261e;
	padding: 12px 15px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.invitation-tip {
	background-color: #f6f7f7;
	padding: 15px 20px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #555;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #555;
}

.form-group input[type='email'],
.form-group select {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
	background-color: #fff;
	line-height: 1.5;
	min-height: 42px;
	text-transform: none;
	letter-spacing: normal;
}

.form-group select {
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #767676 50%), linear-gradient(135deg, #767676 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 15px) calc(50% - 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 35px;
}

.form-group select:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 1px rgba(34, 113, 177, 0.2);
}

.submit-button {
	background-color: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.submit-button:hover {
	background-color: #135e96;
}

.invitation-summary {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}

.summary-card {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	flex: 1 1 calc(33.33% - 20px);
	text-align: center;
	min-width: 200px;
}

.summary-card h5 {
	margin-top: 0;
	color: #555;
	font-size: 18px;
	font-weight: 500;
}

.summary-value {
	font-size: 32px;
	font-weight: 700;
	color: #2271b1;
	margin-top: 10px;
	word-break: break-word;
}

.invitation-table-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 25px;
	overflow-x: auto;
}

.invitation-table-container h3 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	font-size: 20px;
}

.invitation-table {
	width: 100%;
	border-collapse: collapse;
}

.invitation-table th,
.invitation-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.invitation-table th {
	background-color: #f8f9fa;
	color: #333;
	font-weight: 600;
}

.invitation-table tr:last-child td {
	border-bottom: none;
}

.invitation-table tr:hover {
	background-color: #f8f9fa;
}

.yes-badge {
	display: inline-block;
	background-color: #ffb900;
	color: #000;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 12px;
	text-transform: uppercase;
}

.svip-badge {
	display: inline-block;
	background-color: #feeeed;
	color: #000;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 12px;
	text-transform: uppercase;
}

.no-results {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 25px;
	text-align: center;
	color: #666;
}

@media (max-width: 768px) {
	.invitation-summary {
		flex-direction: column;
	}

	.summary-card {
		width: 100%;
	}

	.invitation-table th,
	.invitation-table td {
		padding: 10px;
	}
}
