/* General Reset */
body, h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f9f9fb;
	color: #333;
}

/* Header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem; /* ��� ���� ���� */
	background-color: #4CAF50;
	color: white;
	position: sticky; /* ��ܿ� ���� */
	top: 0;
	left: 0;
	width: 100%;
	height: auto; /* ���� �ڵ� ���� */
	z-index: 500;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	max-width: 1880px;
}

.logo {
	font-size: 1rem;
	white-space: nowrap; /* �۾��� �ٹٲ޵��� �ʵ��� */
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap; /* �ٹٲ� ��� */
	overflow: visible; /* �۾� �߸� ���� */
	padding-right: 1rem;
}

.nav-links a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 0.9rem; /* �۾� ũ�� ���� */
	padding: 0.3rem 0.5rem; /* ���� ���� ���� */
	white-space: nowrap; /* �ؽ�Ʈ �ٹٲ� ���� */
}

.nav-links a:hover {
	background-color: #ffc48c; /* ������ ��� */
	color: white;
}

/* Main Section */
main {
	margin-top: 20px;
}

/* Sections */
.section {
	padding: 2rem;
	text-align: center;
}

.section h1, .section h2, .section h3 {
	color: #4CAF50;
}

/* �±� �Է� ���� */
.tag-search {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
	gap: 0.5rem; /* �Է�â�� ��ư ���� */
}

.tag-search input {
	flex: 1; /* �Է�â�� ������ �а� ���� */
	max-width: 500px;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 30px 0 0 30px; /* ���ʸ� �ձ� �𼭸� */
	font-size: 1rem;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background-color: #f9f9fb;
	color: #333;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tag-search input::placeholder {
	color: #aaa;
	font-size: 0.95rem;
	font-style: italic;
}

.tag-search input:focus {
	border-color: #4CAF50;
	box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
	background-color: #fff;
}

/* �˻� ��ư */
.tag-search-btn {
	padding: 0.75rem 1.5rem;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 0 30px 30px 0; /* �����ʸ� �ձ� �𼭸� */
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tag-search-btn:hover {
	background-color: #45a049;
}

label {
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}

.input-box, .textarea-box {
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 8px;
}

.input-box input, textarea {
	border: none;
	background: none;
	outline: none;
	width: 100%;
	font-size: 1rem;
}

textarea {
	resize: none;
	height: 300px;
}

.icon {
	margin-right: 8px;
	color: #555;
}

/* ���� ��Ʈ ��Ÿ�� */
.part-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.part-box input {
	width: 10%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.button-container {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.add-remove-btn {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1.2rem;
}

.add-remove-btn:hover {
	background-color: #45a049;
}

/* ���� ��ư */
.submit-section {
	text-align: center;
	margin-top: 20px;
}

.submit-btn {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 1.1rem;
	cursor: pointer;
}

.submit-btn:hover {
	background-color: #45a049;
}

/* �Խñ� ī�� ���� ��Ÿ�� */
.card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	text-align: left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ���ε� �Խñ� ī�� ��Ÿ�� */
.card.approved {
	background-color: #e8f5e9; /* ���� �ʷϻ� */
	border-left: 5px solid #4caf50; /* �ʷϻ� ���� */
}

/* ��� �� �Խñ� ī�� ��Ÿ�� */
.card.pending {
	background-color: #f5f5f5; /* ȸ�� */
	border-left: 5px solid #9e9e9e; /* ȸ�� ���� */
}

/* ���� ��Ÿ�� */
.card h3 {
	margin: 0 0 0.5rem;
	color: #0d47a1;
	font-size: 1.5rem;
}

/* ī�� ���� ��Ÿ�� */
.card p {
	margin: 0.3rem 0;
	font-size: 1rem;
	color: #555;
}

/* ��� �� ��Ÿ�� */
.card .comment-count {
	font-size: 1rem;
	color: #4CAF50;
	margin-top: 0.5rem;
	font-weight: bold;
}

/* �Խñ� ��¥ ��Ÿ�� */
.card .date {
	font-size: 0.9rem;
	color: #999;
	margin-top: 0.5rem;
}

/* Card Hover and Active Styles */
.card.clickable {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.card.clickable:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	background-color: #f9f9fb; /* 호버 시 배경색 변경 */
}

.card.clickable:active {
	transform: translateY(0);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	background-color: #e0f7fa; /* 클릭 시 배경색 변경 */
}

#intro {
	width: 100%; /* ���� �ʺ� �°� ���� */
	height: 80px; /* ���̸� 80px�� ���� */
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	resize: vertical; /* ���� ���⸸ ũ�� ���� ���� */
}

/* Profile Section */
.profile-section {
	padding: 2rem;
	text-align: center;
}

.profile-info {
	background-color: #fff;
	padding: 1.5rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: inline-block;
	text-align: left;
	width: 80%;
	max-width: 600px;
	margin: 0 auto 2rem auto;
}

.profile-info p {
	margin: 0.5rem 0;
	font-size: 1rem;
	color: #555;
}

/* �Խ��� ��Ÿ�� */
.profile-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.action-link {
	display: block;
	background-color: #f9f9fb;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem 1.5rem;
	text-decoration: none;
	font-size: 1.1rem;
	color: #333;
	width: 100%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.action-link:hover {
	background-color: #84c5f4;
	color: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Login Section */
.login-section {
	top: 120px; /* ��� ���� + ���� ���� */
	width: 100%;
	text-align: center;
}

.login-section h1 {
	margin-bottom: 2rem;
	color: #4CAF50;
}

/* ��ü �� ��Ÿ�� */
.form {
	display: flex;
	flex-direction: column;
	gap: 1rem; /* �Է� �ʵ� ���� */
	width: 100%;
	max-width: 400px; /* �ִ� �ʺ� ���� */
	margin: 0 auto;
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 10px;
}

/* �ؽ�Ʈ �Է� �� ���� ��Ÿ�� */
.form input, .form select, .form textarea {
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	color: #333;
	background-color: #f9f9fb;
}

.form input:focus, .form select:focus, .form textarea:focus {
	border-color: #4CAF50; /* ��Ŀ�� �� ���� ���� */
	outline: none;
}

/* �ؽ�Ʈ ���� ũ�� */
.form textarea {
	resize: none;
	height: 90px; /* ������ ���̷� ���� */
}

/* ��ư ��Ÿ�� */
.form button {
	background-color: #4CAF50;
	color: white;
	padding: 1rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.form button:hover {
	background-color: #45a049;
	transform: translateY(-2px); /* ��ư ȿ�� */
}

.form button:active {
	transform: translateY(0); /* Ŭ�� �� ��ư ȿ�� */
}

/* �� ��Ÿ�� */
label {
	font-size: 1rem;
	color: #333;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

/* �� �Է� �ʵ��� ������ ��� */
.form input::placeholder, .form select::placeholder, .form textarea::placeholder
	{
	color: #aaa;
	font-size: 0.95rem;
	font-style: italic;
}

.register-section {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

/* �̹� ������ �����Ű���? �ؽ�Ʈ ��Ÿ�� */
.sign-up-text {
	margin-top: 2rem;
	font-size: 0.95rem;
	color: #555;
}

.sign-up-text a {
	color: #4CAF50;
	font-weight: bold;
	text-decoration: none;
}

.sign-up-text a:hover {
	text-decoration: underline;
}

/* �Խñ� ī�� */
.post-card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	text-align: left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
}

.post-card.approved {
	background-color: #e8f5e9; /* ���� �ʷϻ� */
	border-left: 5px solid #4caf50; /* �ʷϻ� ���� */
}

.post-card.pending {
	background-color: #f5f5f5; /* ȸ�� */
	border-left: 5px solid #9e9e9e; /* ȸ�� ���� */
}

.post-card h3 {
	cursor: pointer;
	margin: 0 0 0.5rem;
	color: #4CAF50;
	font-size: 1.2rem;
}

.post-card p {
	margin: 0.5rem 0;
	font-size: 1rem;
	color: #555;
}

/* ��¥ ��Ÿ�� */
.post-card .date {
	font-size: 0.9rem;
	color: #999;
	margin-top: 0.5rem;
}

/* ��� ��� ���� */
.my-comments-section {
	padding: 2rem;
	text-align: center;
}

.my-comments-section h2 {
	color: #4CAF50;
	margin-bottom: 1rem;
}

/* ��� ��� */
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 600px;
	text-align: left;
}

.comment-item {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comment-item h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	color: #333;
}

.comment-item .date {
	font-size: 0.9rem;
	color: #777;
}

.post-title {
	font-size: 2rem;
	color: #0d47a1;
	margin-bottom: 1rem;
}

.post-meta {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 1rem;
}

.post-meta span {
	margin-right: 1rem;
}

.post-content {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #555;
}

/* ��� ��Ÿ�� */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 2rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
	color: #aaa;
	float: right;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
}

.close-btn:hover, .close-btn:focus {
	color: #000;
	text-decoration: none;
}

.apply-btn {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.apply-btn:hover {
	background-color: #45a049;
}

.accept-btn, .reject-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
}

.accept-btn {
	background-color: #4CAF50; /* �ʷϻ� */
	color: white;
}

.reject-btn {
	background-color: #f44336; /* ������ */
	color: white;
}

.accept-btn:hover {
	background-color: #45a049;
}

.reject-btn:hover {
	background-color: #e53935;
}

/* ��� ���� */
.comments-section {
	margin-top: 3rem;
	padding: 2rem;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
	font-size: 1.5rem;
	color: #4CAF50;
	margin-bottom: 1rem;
	text-align: left;
}

.comments-list {
	margin-top: 1rem;
}

.comment {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.comment strong {
	color: #0d47a1;
}

.comment p {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
}

.comment-inline-input {
	width: 80%;
	padding: 0.75rem;
	margin-top: 1rem;
	font-size: 1rem;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
	outline: none;
}

.comment-inline-submit-btn {
	width: 20%;
	padding: 0.75rem;
	margin-top: 1rem;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.comment-inline-submit-btn:hover {
	background-color: #45a049;
}

/* ���� ���� ��Ÿ�� */
.session-status {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0 1rem;
}

.session-status li {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: #555;
}

.session-apl ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.session-apl li {
	list-style-type: none;
	margin-right: 20px;
}

.session-apl-item li {
	cursor: pointer;
}

.hashtag {
	color: #0EB4FC;
}
/* 스타일 수정 - 각 세션별로 줄 바꾸기 */
.band-details-content p {
	margin: 5px 0;
}

.status {
	font-weight: bold;
	margin-left: 0.5rem;
}

.status.complete {
	color: #4CAF50;
}

.status.in-progress {
	color: #333;
}

/* ����Ʈ ��Ÿ�� */
.post-list, .comment-list {
	list-style: none;
	padding: 0;
}

.post-list li, .comment-list li {
	padding: 0.8rem;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
}

/* Footer */
.footer {
	text-align: center;
	padding: 1rem;
	background: #4CAF50; /* ����� ���ϵ� ���� */
	color: white;
}