/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/*


 */
/* Apply a modern gradient background */
body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #4A90E2, #9013FE);
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Make sure the content is centered nicely */
.container {
	max-width: 900px;
	margin: auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	backdrop-filter: blur(5px);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Enhance headers */
h1, h2 {
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Style links */
a {
	color: #FFEB3B;
	font-weight: bold;
	transition: color 0.3s ease-in-out;
}

a:hover {
	color: #FFC107;
}

/* Tables should be more readable */
table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border-radius: 5px;
	overflow: hidden;
}

th, td {
	padding: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	text-align: left;
}

th {
	background: rgba(255, 255, 255, 0.4);
	color: #000;
}

/* Add subtle hover effect on table rows */
tr:hover {
	background: rgba(255, 255, 255, 0.2);
}

