 @charset "utf-8";

.nav-btn-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px; margin-bottom: 15px;
}

.nav-btn {
	border: 1px solid rgba(128,128,128,0.2);
	background: rgba(128,128,128,0.05);
	color: inherit;
	padding: 12px 5px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 0.9rem;
	transition: all 0.2s;
	cursor: pointer;
	text-align: center;
}

.nav-btn.active {
	background: #0d6efd;
	color: #fff;
	border-color: #0d6efd;
	box-shadow: 0 4px 10px rgba(13,110,253,0.3);
}

.rank-card {
	display: none; 
	text-decoration: none !important;
	color: inherit !important;
	background: var(--bs-tertiary-bg);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--bs-border-color);
	height: 120px;
	position: relative;
}

.poster-box {
	width: 100px;
	height: 100%;
	flex-shrink: 0;
}

.poster-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-box {
	padding: 12px 15px;
	flex-grow: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.item-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 3px;
}

.item-meta {
	font-size: 0.85rem;
	opacity: 0.8;
	margin-bottom: 2px;
}

.pink-text {
	color: #e91e63;
	font-weight: bold;
}

.star {
	color: #ffc107;
}

.rank-number-right {
	width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	font-weight: 900;
	font-style: italic;
	color: #0d6efd;
	opacity: 0.8;
	flex-shrink: 0;
	padding-right: 10px;
}
