/* Lightweight torrent details styles - Header és Footer nélküli nézet */

.torrent-lightweight-container {
	background: var(--mainouter-color);
	border-radius: 8px;
	padding: 20px;
	max-width: 100%;
	margin: 0 auto;
}

.lightweight-header {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.torrent-name-lightweight {
	font-size: 18px;
	line-height: 1.4;
	color: var(--body-color);
	margin-bottom: 10px;
	font-family: var(--body-font-family);
}

.torrent-name-lightweight b {
	font-weight: 600;
}

.torrent-original-title {
	font-size: 14px;
	color: var(--body-color);
	font-style: italic;
	opacity: 0.7;
}

.lightweight-header .icon-link {
	margin-left: 8px;
	display: inline-block;
	vertical-align: middle;
	color: var(--url-font-color);
}

.lightweight-header .torrent-icon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.lightweight-header .icon-link:hover .torrent-icon,
.lightweight-header .icon-link:hover i {
	opacity: 1;
}

.lightweight-header i.fas {
	font-size: 16px;
	color: var(--url-font-color);
}

/* Banner section */
.ads-container-lightweight {
	text-align: center;
	margin: 20px 0;
	padding: 15px 0;
	background: var(--userbar-color);
	border-radius: 6px;
	border: 1px var(--global-border-style) var(--border-color);
}

.ads-container-lightweight .banner-img-large {
	max-width: 100%;
	height: auto;
	margin: 8px 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Main content layout */
.lightweight-main-content {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

/* Sidebar */
.lightweight-sidebar {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.torrent-poster-container-lightweight {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	border: 1px var(--global-border-style) var(--border-color);
}

.torrent-poster-lightweight {
	width: 100%;
	height: auto;
	display: block;
}

.bithorlo-badge-lightweight {
	text-align: center;
	padding: 8px;
	background: var(--menu-background);
	border-radius: 6px;
	border: 1px var(--global-border-style) var(--border-color);
}

.bithorlo-badge-lightweight img {
	max-width: 120px;
	height: auto;
}

/* Action buttons */
.sidebar-actions-lightweight {
	background: var(--userbar-color);
	border-radius: 8px;
	padding: 12px;
	border: 1px var(--global-border-style) var(--border-color);
}

.sidebar-actions-list-lightweight {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.action-button-lightweight {
	display: block;
	width: 100%;
	padding: 10px 0px;
	text-align: center;
	border-radius: 8px;
	font-size: var(--body-font-size);
	font-family: var(--body-font-family);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px var(--global-border-style) var(--border-color);
}

.action-button-lightweight i {
	margin-right: 6px;
}

.action-button-lightweight.btn-view-full {
	background: var(--submenu-color);
	color: var(--submenu-font-color);
}

.lightweight-info-section {
	background: var(--userbar-color);
	border-radius: 8px;
	padding: 20px;
	border: 1px var(--global-border-style) var(--border-color);
}

.info-data-lightweight {
	color: var(--body-color);
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
}

.torrent-data-list-lightweight {
	list-style: none;
	padding: 0;
	margin: 0;
}

.torrent-data-list-lightweight li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: var(--body-font-size);
	font-family: var(--body-font-family);
	line-height: 1.6;
}

.torrent-data-list-lightweight li:last-child {
	border-bottom: none;
}

.torrent-data-list-lightweight strong {
	color: var(--body-color);
	display: inline-block;
	min-width: 140px;
	font-weight: bold;
}

.status-ok {
	color: green;
	font-weight: 600;
}

.status-error {
	color: red;
	font-weight: 600;
}

.status-pending {
	color: orange;
	font-weight: 600;
}

.seeder-count {
	color: green;
	font-weight: 600;
}

.leecher-count {
	color: red;
	font-weight: 600;
}

/* Images section */
.images-section-lightweight {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.torrent-images-grid-lightweight {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.torrent-sample-image-lightweight {
	width: 100%;
	height: auto;
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.2s ease;
	border: 1px var(--global-border-style) var(--border-color);
}

.torrent-sample-image-lightweight:hover {
	transform: scale(1.05);
}

/* Description section */
.description-section-lightweight {
	background: var(--userbar-color);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px var(--global-border-style) var(--border-color);
}

.section-header-lightweight {
	font-size: 18px;
	font-weight: 600;
	color: var(--body-color);
	font-family: var(--body-font-family);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--border-color);
}

.torrent-description-lightweight {
	font-size: var(--body-font-size);
	font-family: var(--body-font-family);
	line-height: 1.8;
	color: var(--body-color);
	word-wrap: break-word;
}

.torrent-description-lightweight img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 10px 0;
	border: 1px var(--global-border-style) var(--border-color);
}

/* Footer */
.lightweight-footer {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid var(--border-color);
}

.btn-view-full-details {
	display: inline-block;
	padding: 12px 30px;
	background: var(--menu-background);
	color: var(--menu-font-color);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-family: var(--body-font-family);
	transition: all 0.3s ease;
	border: 1px var(--global-border-style) var(--border-color);
}

.btn-view-full-details:hover {
	background: var(--menu-hover);
}

.btn-view-full-details i {
	margin-left: 8px;
}

/* Link styles */
.lightweight-info-section a,
.torrent-description-lightweight a {
	color: var(--url-font-color);
	text-decoration: var(--url-text-decoration);
	transition: color 0.2s;
}

.lightweight-info-section a:hover,
.torrent-description-lightweight a:hover {
	color: var(--url-font-hover-color);
	text-decoration: underline;
}

/* Text color variations */
.text-red {
	color: red;
}
