/* Helbestên Helbestan CSS */

.hx-container {
	max-width: 1200px;
	margin: 0 auto;
	font-family: inherit;
}

.hx-search-bar {
	margin-bottom: 20px;
	text-align: center;
}

.hx-search-bar input[type="text"] {
	padding: 10px;
	width: 60%;
	max-width: 400px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.hx-search-bar button {
	padding: 10px 20px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.hx-search-bar button:hover {
	background-color: #005177;
}

.hx-alphabet {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 25px;
	justify-content: center;
	align-items: center;
}

.hx-letter-btn {
	display: inline-block;
	padding: 4px 8px;
	background-color: #f1f1f1;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 11px;
	font-weight: bold;
	transition: all 0.2s;
	white-space: nowrap;
}

.hx-destpek-btn {
	background-color: #e0e0e0;
	color: #d32f2f;
	margin-right: 5px;
}

.hx-letter-btn:hover,
.hx-letter-btn.active {
	background-color: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

.hx-content h3 {
	border-bottom: 2px solid #0073aa;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.hx-poet-list,
.hx-song-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
}

.hx-poet-list li a,
.hx-song-list li a {
	display: block;
	padding: 15px;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	text-decoration: none;
	color: #0073aa;
	font-weight: 500;
	transition: all 0.2s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hx-poet-list li a:hover,
.hx-song-list li a:hover {
	background-color: #fafafa;
	border-color: #0073aa;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Flexbox Layout for Single View */
.hx-single-layout {
	display: flex;
	flex-wrap: nowrap; /* Asla alt satıra inmemesi için */
	gap: 20px;
	margin-top: 20px;
	align-items: flex-start;
}

.hx-lyrics-col {
	flex: 1;
	min-width: 0; /* İçeriğin esnekliğini korur */
	font-size: 16px;
	line-height: 1.6;
}

.hx-video-col {
	width: 550px; /* Videonun genişliği (İstediğiniz gibi değiştirebilirsiniz) */
	flex-shrink: 0;
}

.hx-youtube-video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hx-youtube-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hx-youtube-link a {
	display: inline-block;
	background: #ff0000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
}

@media (max-width: 768px) {
	.hx-single-layout {
		flex-direction: column;
	}
	.hx-video-col {
		width: 100%;
	}
}

/* Form Styles */
.hx-form-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #eee;
}

.hx-form-title {
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
}

.hx-form-group {
	margin-bottom: 15px;
}

.hx-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.hx-form-group input,
.hx-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

#hx-submit-btn {
	display: block;
	width: 100%;
	padding: 12px;
	background-color: #28a745;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
}

#hx-submit-btn:hover {
	background-color: #218838;
}

#hx-form-message {
	margin-bottom: 15px;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

#hx-form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

#hx-form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}

/* Stats and Ratings */
.hx-song-header {
	margin-bottom: 10px;
}

.hx-song-title {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 26px;
	color: #0073aa;
	font-weight: bold;
}

.hx-song-stats {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
	display: flex;
	align-items: center;
}

.hx-views {
	margin-right: 15px;
}

.hx-print-btn {
	cursor: pointer;
	color: #0073aa;
	font-weight: bold;
	transition: color 0.2s;
}

.hx-print-btn:hover {
	color: #d32f2f;
}

.hx-rating-widget {
	margin-top: 30px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #eee;
}

.hx-rating-stars {
	font-size: 24px;
	cursor: pointer;
	color: #ccc;
	margin-bottom: 5px;
}

.hx-star {
	transition: color 0.2s;
}

.hx-star:hover,
.hx-star.active {
	color: #f39c12; /* Gold */
}

.hx-rating-info {
	font-size: 13px;
	color: #555;
}

.hx-rating-msg {
	font-size: 12px;
	margin-top: 5px;
	font-weight: bold;
}

/* Top Lists Container */
.hx-top-lists-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.hx-top-list {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hx-top-list h3 {
	margin-top: 0;
	font-size: 18px;
	color: #0073aa;
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.hx-top-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hx-top-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f9f9f9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hx-top-list li:last-child {
	border-bottom: none;
}

.hx-top-list a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.hx-top-list a:hover {
	color: #0073aa;
}

.hx-badge {
	background: #e0e0e0;
	color: #333;
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: bold;
}

.hx-badge.star {
	background: #f39c12;
	color: #fff;
}

/* Poet Profile */
.hx-poet-profile {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 20px;
}

.hx-poet-img-col {
	flex-shrink: 0;
	width: 250px;
}

.hx-poet-img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: block;
}

.hx-poet-sonhx-col {
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	.hx-poet-profile {
		flex-direction: column;
	}
	.hx-poet-img-col {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

/* Other Songs (Helbestên Din) */
.hx-other-songs {
	margin-top: 30px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #eee;
}

.hx-other-sonhx-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #e5e5e5;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.hx-other-songs h3 {
	margin: 0;
	font-size: 18px;
	color: #0073aa;
}

.hx-poet-return {
	font-size: 12px;
	color: #d32f2f;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.2s;
}

.hx-poet-return:hover {
	color: #ff0000;
}

.hx-other-songs ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hx-other-songs li {
	padding: 8px 0;
	border-bottom: 1px solid #f1f1f1;
}

.hx-other-songs li:last-child {
	border-bottom: none;
}

.hx-other-songs a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.hx-other-songs a:hover {
	color: #d32f2f;
}
