body {
	font-family: Arial, sans-serif;
	margin: 20px;
	background-color: #fef7f8;
}

header {
	background: linear-gradient(135deg, rgb(235, 70, 102), rgb(220, 60, 92));
	color: white;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(235, 70, 102, 0.3);
}

table {
	max-width: 100%;
	border-collapse: collapse;
	background-color: white;
	box-shadow: 0 4px 15px rgba(235, 70, 102, 0.1);
	border-radius: 10px;
	overflow-x: auto;
	border: 1px solid rgba(235, 70, 102, 0.1);
	display: block;
	white-space: nowrap;
}

th, td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid rgba(235, 70, 102, 0.1);
}

th {
	background: linear-gradient(135deg, rgb(235, 70, 102), rgb(220, 60, 92));
	color: white;
	font-weight: bold;
}

tr:hover {
	background-color: rgba(235, 70, 102, 0.05);
}

audio, img {
	max-width: 200px;
	max-height: 150px;
}

.directory-name {
	font-weight: bold;
	color: rgb(235, 70, 102);
}

.file-info {
	font-size: 0.9em;
	color: #666;
}

.song-title {
	font-weight: bold;
	color: rgb(235, 70, 102);
	font-size: 1.1em;
	flex-shrink: 0;
	min-width: 150px;
}

.audio-type {
	font-size: 0.9em;
	color: #666;
	text-transform: capitalize;
}

.audio-player {
	margin-top: 8px;
}

.section {
	margin-top: 30px;
	padding: 20px;
	background: linear-gradient(135deg, rgba(235, 70, 102, 0.1), rgba(220, 60, 92, 0.05));
	border-radius: 10px;
	border: 1px solid rgba(235, 70, 102, 0.2);
}

.section h2 {
	color: rgb(235, 70, 102);
	margin-top: 0;
	margin-bottom: 15px;
}

.section-content {
	background-color: rgba(235, 70, 102, 0.05);
	padding: 15px;
	border-radius: 8px;
	border: 1px solid rgba(235, 70, 102, 0.1);
}

.shap-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(235, 70, 102, 0.2);
}

.shap-table {
	width: 100%;
	margin-top: 15px;
}

.shap-table th {
	background: linear-gradient(135deg, rgb(235, 70, 102), rgb(220, 60, 92));
	color: white;
	padding: 10px;
	border-radius: 5px;
}

.shap-table td {
	padding: 10px;
	background-color: white;
	border-radius: 5px;
	margin: 2px 0;
}

.evaluation-table {
	width: 100%;
	margin-top: 15px;
	border-collapse: collapse;
	background-color: white;
	box-shadow: 0 4px 15px rgba(235, 70, 102, 0.1);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(235, 70, 102, 0.1);
}

.evaluation-table th {
	background: linear-gradient(135deg, rgb(235, 70, 102), rgb(220, 60, 92));
	color: white;
	padding: 12px;
	text-align: center;
	font-weight: bold;
}

.evaluation-table td {
	padding: 12px;
	text-align: center;
	border-bottom: 1px solid rgba(235, 70, 102, 0.1);
}

.evaluation-table td:first-child {
	text-align: left;
	font-weight: bold;
	color: rgb(235, 70, 102);
}

.evaluation-table .best {
	background-color: rgba(76, 175, 80, 0.1);
	color: #2e7d32;
	font-weight: bold;
}

.evaluation-table small {
	font-size: 0.8em;
	color: #666;
	font-weight: normal;
} 