@charset "utf-8";
/**
 * Copyright (c) 2013 Chris Roberts <chris45964596@msn.com>
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 * @category   Joomla 2.5
 * @package    com_awokeybroadcast
 * @subpackage nowplaying
 * @version    1.1.12
 * @link       http://www.awokeybroadcast.com/
 */
 
/* Top Songs */

.topsongs-background {
	margin: 20px 0 -10px;
	min-height: 95px;
	border-radius: 8px;
	background: #EEEEEE;
	padding: 5px 0;
}

.topsongs-header {
	width: 100%;
	background: #000000;
	opacity: 0.8;
	border-radius: 3px;
	height: 40px;
	color: #F5DEB3;
	margin: 20px 0;
}

.topsongs-ranking {
	font-weight: bold;
	float: left;
	font-size: 16px;
	padding-top: 12px;
	margin: 25px 10px 20px 20px;
	color: #095197;
}

.topsongs-requests {
	margin-right: 10px;
	float: left;
	font-style: italic;
	font-size: 16px;
	padding-top: 12px;
	color: #095197;
}

.topsongs-trackInfo {
	padding-top: 15px;
}

/* End Top Songs */

/* ---------- Chart redesign, 2026-08-09 (FunX XChart-style cards) ---------- */
/* New, isolated from everything above: plain flexbox throughout, so mobile
   just needs flex-wrap rather than manually unfloating every element like
   the legacy classes above required. */

.chart-section-title {
	width: 100%;
	background: #000000;
	opacity: 0.8;
	border-radius: 3px;
	padding: 10px 15px;
	color: #F5DEB3;
	margin: 20px 0 10px;
	font-weight: bold;
	box-sizing: border-box;
}

.chart-row {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 15px;
	margin-bottom: 8px;
	border: 1px solid #DDDDDD;
	border-radius: 6px;
	background: #FFFFFF;
}

.chart-rank-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 42px;
	flex-shrink: 0;
}

.chart-rank-box {
	font-weight: bold;
	font-size: 18px;
	border: 2px solid #333333;
	border-radius: 4px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
}

.chart-badge {
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 2px 6px;
	border-radius: 3px;
	white-space: nowrap;
}

.chart-badge-up {
	background: #2E9E44;
}

.chart-badge-down {
	background: #D13C3C;
}

.chart-badge-new {
	background: #095197;
}

.chart-badge-same {
	background: #999999;
}

.chart-cover {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 4px;
}

.chart-cover img {
	width: 60px;
	height: 60px;
	border-radius: 4px;
	object-fit: cover;
}

.chart-info {
	flex: 1;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.chart-artist {
	font-weight: bold;
}

.chart-title {
	color: #555555;
}

.chart-artist,
.chart-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chart-meta {
	font-size: 12px;
	color: #888888;
	margin-top: 4px;
}

.chart-chevron {
	font-size: 24px;
	color: #999999;
	flex-shrink: 0;
}

.chart-empty,
.chart-notice {
	padding: 10px 5px;
	color: #666666;
}

@media screen and (max-width: 480px) {
	.chart-row {
		flex-wrap: wrap;
	}

	.chart-artist,
	.chart-title {
		white-space: normal;
	}

	.chart-info {
		flex-basis: 100%;
		order: 1;
	}

	.chart-chevron {
		display: none;
	}
}

