/* Twinvite風 RSVP スタイル */
.twinvite-rsvp-box {
	background: #ffffff;
	border: 1px solid #e1e8ed;
	border-radius: 12px;
	padding: 24px;
	max-width: 600px;
	margin: 24px auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #14171a;
}
.twinvite-header {
	border-bottom: 2px solid #f5f8fa;
	padding-bottom: 12px;
	margin-bottom: 20px;
}
.twinvite-title {
	font-size: 20px;
	margin: 0;
	font-weight: 700;
	color: #1da1f2;
}
.twinvite-actions {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
}
.twinvite-btn {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 24px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #ffffff;
}
.twinvite-btn-yes {
	background: #1da1f2;
}
.twinvite-btn-yes:hover {
	background: #0c85d0;
	transform: translateY(-1px);
}
.twinvite-btn-maybe {
	background: #657786;
}
.twinvite-btn-maybe:hover {
	background: #4a5c6a;
	transform: translateY(-1px);
}
.twinvite-section {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #f5f8fa;
}
.twinvite-section-title {
	font-size: 14px;
	font-weight: 600;
	color: #657786;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.badge-yes {
	background: #e8f5fe;
	color: #1da1f2;
	padding: 2px 8px;
	border-radius: 6px;
	font-size: 12px;
}
.badge-maybe {
	background: #f5f8fa;
	color: #657786;
	padding: 2px 8px;
	border-radius: 6px;
	font-size: 12px;
}
.twinvite-avatar-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.twinvite-avatar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	width: 60px;
}
.twinvite-avatar-item img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid transparent;
	transition: border-color 0.2s;
}
.twinvite-avatar-item:hover img {
	border-color: #1da1f2;
}
.avatar-placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e1e8ed;
	color: #657786;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}
.twinvite-user-label {
	font-size: 10px;
	color: #657786;
	margin-top: 4px;
	max-width: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.twinvite-empty {
	font-size: 13px;
	color: #aab8c2;
	font-style: italic;
	margin: 0;
}
/* 折り畳み表示用ヘッダーとトグルボタン */
.twinvite-collapse-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.twinvite-collapse-header .twinvite-section-title {
	margin-bottom: 0;
}
.twinvite-toggle-btn {
	background: #f0f3f4;
	border: none;
	padding: 5px 12px;
	border-radius: 14px;
	font-size: 12px;
	color: #536471;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	transition: all 0.2s ease;
}
.twinvite-toggle-btn:hover {
	background: #e1e8ed;
	color: #0f1419;
}
.twinvite-toggle-icon {
	font-size: 10px;
	transition: transform 0.2s ease;
}
.twinvite-toggle-btn.is-active .twinvite-toggle-icon {
	transform: rotate(180deg);
}
.twinvite-collapse-body.is-hidden {
	display: none;
}
