/**
 * Wall of Fame Directory Styles
 *
 * Styles for the Wall of Fame directory table display.
 *
 * @package Incose
 * @since   1.0.0
 */

/* Container */
.wall-of-fame-container {
	margin: 20px 0;
	overflow-x: auto;
}

/* Table Styles */
.wall-of-fame-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wall-of-fame-table thead {
	background: #f9f9f9;
	border-bottom: 2px solid #e0e0e0;
}

.wall-of-fame-table thead th {
	padding: 15px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wall-of-fame-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.2s ease;
}

.wall-of-fame-table tbody tr:last-child {
	border-bottom: none;
}

.wall-of-fame-table tbody tr:hover {
	background-color: #f9f9f9;
}

.wall-of-fame-table tbody td {
	padding: 12px 20px;
	font-size: 14px;
	color: #555;
}

/* Empty State */
.wall-of-fame-empty {
	text-align: center;
	padding: 40px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	margin: 20px 0;
	color: #666;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.wall-of-fame-table thead th,
	.wall-of-fame-table tbody td {
		padding: 10px 15px;
		font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	.wall-of-fame-table thead th,
	.wall-of-fame-table tbody td {
		padding: 8px 12px;
		font-size: 12px;
	}
}
