@charset "UTF-8";

input.date_input {
	width:120px; height:32px; color:#83C9F4cd; font-size:0.7em; font-family:Roboto; text-align:right; padding-top:2px;
	background-color:transparent !important; border-width:0px !important; border-radius:3px !important;
}
input.date_input:focus { outline: none; border-width:0px !important; }

.board-view-card, .board-comment-card, .board-empty-card {
	background: rgba(0,0,0,.42);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: .7rem;
	box-shadow: 0 10px 28px rgba(0,0,0,.22);
	padding: .95rem 1rem;
	color: rgba(255,255,255,.95);
	margin-bottom: .8rem;
}

.board-view-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.4;
	word-break: break-word;
}

.board-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-top: .5rem;
	font-size: .78rem;
	color: rgba(255,255,255,.68);
}

.board-meta-left, .board-meta-right {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.board-content {
	max-width:100%;
	overflow-x:auto;
	margin-top: 1rem;
	padding: .8rem;
	border-top: 1px solid rgba(255,255,255,.08);
	background-color: rgba(255,255,255,.96); color:#333;
	font-size: .95rem;
	line-height: 1.7;
	word-break: break-word;
	overflow-wrap: break-word;
}

.board-content pre {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
	overflow-wrap: break-word;
	font-family: Consolas, Monaco, monospace;
	font-size: .9rem;
	line-height: 1.6;
	color: #dfe8ff;
}

.board-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1rem;
}

.board-section-title {
	color: #83C9F4;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 1.1rem .2rem .7rem;
}

.comment-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .8rem;
	margin-bottom: .45rem;
}

.comment-user {
	font-weight: 700;
	color: #ffffff;
}

.comment-time {
	font-size: .75rem;
	color: rgba(255,255,255,.62);
	text-align: right;
}

.comment-body {
	max-width:100%;
	overflow-x:auto;
	font-size: .92rem;
	line-height: 1.65;
	color: rgba(255,255,255,.93);
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: pre-wrap;
	padding-top:8px; margin-top:5px;
	border-top: 1px solid rgba(255,255,255,.08);
}

.comment-count {
	font-weight: 500;
	color: #8fb9ff;
	margin-left: .15rem;
}

.board-empty-card {
	text-align: center;
	color: rgba(255,255,255,.60);
	padding: 1.2rem 1rem;
}

.board-top-buttons {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.board-top-buttons button {
	min-width: 78px;
}


@media (max-width: 495px) {
.board-meta {
	flex-direction: column;
	gap: .45rem;
}
.board-meta-right {
	text-align: left;
}
}