/* #region */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* 2. Remove default margin */
* {
	margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
	}
}

body {
	/* 4. Add accessible line-height */
	line-height: 1.5;
	/* 5. Improve text rendering */
	-webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
	font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
	text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

/* #endregion */

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

header {
	text-align: center;
	margin-bottom: 30px;

	h1 {
		color: #2c3e50;
		margin-bottom: 10px;
	}
}

.drop-zone {
	border: 3px dashed #3498db;
	border-radius: 10px;
	padding: 50px;
	text-align: center;
	background-color: #ecf0f1;
	margin-bottom: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.drop-zone:hover,
.drop-zone.drag-over {
	border-color: #2980b9;
	background-color: #d5dbdb;
	transform: scale(1.02);
}

.drop-zone-content p:first-child {
	font-size: 24px;
	margin-bottom: 10px;
}

.drop-zone-hint {
	color: #7f8c8d;
	font-size: 14px;
}

.loading {
	text-align: center;
	padding: 50px;
	font-size: 18px;
	color: #3498db;
}

.error {
	text-align: center;
	padding: 50px;
	font-size: 18px;
	color: #e74c3c;
	background-color: #fadbd8;
	border-radius: 5px;
}

.bcf-header {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

	h2 {
		color: #2c3e50;
		margin-bottom: 10px;
	}
}

.topic {
	background-color: white;
	margin-bottom: 30px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	overflow: hidden;

	h3 {
		background-color: #3498db;
		color: white;
		padding: 15px 20px;
		margin: 0;
	}
}

.topic-details {
	padding: 15px 20px;
}

.topic-details-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;

	tr {
		border-bottom: 1px solid #ecf0f1;
	}

	tr:last-child {
		border-bottom: none;
	}

	td {
		padding: 8px 0;
		vertical-align: top;
	}
}

.detail-time {
	cursor: help;
}

.detail-label {
	width: 30%;
	color: #2c3e50;
	font-weight: bold;
}

.detail-value {
	color: #34495e;
}

.topic-info {
	padding: 20px;

	p {
		margin-bottom: 8px;
	}

	strong {
		color: #2c3e50;
	}
}

.images {
	padding: 15px 20px;
}

.image-container {
	border-top: 1px solid #ecf0f1;

	img {
		max-width: 100%;
		height: auto;
		border: 1px solid #ddd;
		border-radius: 4px;
		display: block;
	}
}

.comments-section {
	padding: 20px;
	border-top: 1px solid #ecf0f1;
}

.comments-header {
	color: #2c3e50;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: bold;
}

.comment {
	background-color: #f8f9fa;
	border-left: 4px solid #3498db;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.comment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	flex-wrap: wrap;
	gap: 10px;
}

.comment-header strong {
	color: #2c3e50;
	font-size: 14px;
}

.comment-date {
	color: #7f8c8d;
	font-size: 12px;
	font-style: italic;
}

.comment-body {
	color: #2c3e50;
	line-height: 1.5;
	margin-bottom: 10px;
	white-space: pre-wrap;
}

.comment-modification {
	border-top: 1px solid #e9ecef;
	padding-top: 8px;
	margin-top: 10px;
}

.comment-modification small {
	color: #6c757d;
	font-style: italic;
}

.image-slider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #f8f9fa;
}

.slider-image {
	max-width: 100%;
	max-height: 400px;
	object-fit: contain;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(52, 152, 219, 0.8);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
	background-color: rgba(52, 152, 219, 1);
}

.slider-btn:disabled {
	background-color: rgba(127, 140, 141, 0.5);
	cursor: not-allowed;
}

.prev-btn {
	left: 10px;
}

.next-btn {
	right: 10px;
}

.image-counter {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
}

@media (max-width: 600px) {
	.drop-zone {
		padding: 15px;
	}

	.file-info {
		margin: 10px;
		padding: 8px;
	}
}

/*# sourceMappingURL=main.css.map*/