@charset "utf-8";

.recipients-container {
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: #f9f9f9;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.recipients-container:hover {
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.recipients-summary {
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f5f5f5;
	border-bottom: 1px solid #ddd;
	border-radius: 6px 6px 0 0;
}

.recipient-count {
	font-weight: bold;
	color: #333;
	font-size: 14px;
}

.toggle-btn {
	color: #007bff;
	text-decoration: none;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.2s ease;
	background-color: transparent;
}

.toggle-btn:hover {
	color: #0056b3;
	background-color: #e3f2fd;
	text-decoration: none;
}

.recipients-detail {
	padding: 15px;
	background-color: white;
	border-radius: 0 0 6px 6px;
}

.recipients-list {
	margin-bottom: 10px;
	line-height: 1.8;
	color: #555;
	font-family: 'Courier New', monospace;
	font-size: 13px;
	max-height: 200px;
	overflow-y: auto;
	padding: 10px;
	background-color: #fafafa;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}

.recipient-email {
	color: #007bff;
	font-weight: 500;
	transition: color 0.2s ease;
}

.recipient-email:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Font Awesome 아이콘 대체 */
.toggle-btn::before {
	content: "▼";
	font-size: 10px;
	transition: transform 0.3s ease;
}

.toggle-btn[onclick*="hiddenMoreRcpt"]::before {
	content: "▲";
}

/* 스크롤바 스타일링 */
.recipients-list::-webkit-scrollbar {
	width: 6px;
}

.recipients-list::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.recipients-list::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.recipients-list::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}
