.counselor-icon {
	text-align: center;
}
.counselor-icon img {
	width: 100px;
	height: 100px;
	border-radius: 50%; /* 둥근 이미지 처리 */
	margin-bottom: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
.counselor-name {
	font-size: 1.1rem;
	font-weight: 600;
}
.banner {
	width: 100%;
	height: auto;
	margin: 10 auto;
	display: block;
	padding: 10px;
}
.banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	cursor: pointer;
}
.banner_title{
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
}

/* 앱 설치 권유 바 스타일 */
.app-install-bar {
	color: white;
	padding: 15px 0;
	margin-bottom: 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px 10px 0 0;
	position: relative;
	z-index: 1000;
}

.app-install-text {
	line-height: 1.2;
}

.app-install-text strong {
	font-size: 1.1rem;
}

.app-install-text small {
	font-size: 0.85rem;
	opacity: 0.9;
}

.app-install-bar .btn-success {
	background-color: #28a745;
	border-color: #28a745;
	font-size: 0.85rem;
	padding: 0.375rem 0.75rem;
}

.app-install-bar .btn-success:hover {
	background-color: #218838;
	border-color: #1e7e34;
}

.app-install-bar .btn-close {
	background: none;
	border: none;
	font-size: 0.8rem;
	opacity: 0.7;
	padding: 0.25rem;
}

.app-install-bar .btn-close:hover {
	opacity: 1;
}

/* 숨김 클래스 */
.app-install-bar.hidden {
	display: none;
}