.bar {
	background: #ffffff;
	border: 1px solid #ccc;
	border-radius: 6px;
	overflow: hidden;
}

.bar-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #2c3e50;
	color: #ffffff;
}

.bar-header h2 {
	flex: 1;
	margin: 0;
}

.bar-header input[type="password"] {
	padding: 6px 8px;
	border-radius: 4px;
	border: none;
	font-size: 14px;
}

.bar-header button {
	padding: 6px 12px;
	border-radius: 4px;
	border: none;
	background: #3498db;
	color: #ffffff;
	cursor: pointer;
	font-size: 14px;
}

.bar-header button:hover {
	background: #2980b9;
}

.bar-content {
	/*max-height: 0;*/
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 16px;
}

.bar-content.open {
	/*max-height: 300px;*/
	padding: 16px;
}

/*.bar-content p {*/
/*margin: 0;*/
/*line-height: 1.5;*/
/*}*/