img {
	border-color: transparent;
}

/* 1. Added body style for global font, color, and padding */
body {
	font-family: Arial, Helvetica, sans-serif;
	color: white;
	padding: 20px;
	background-color: blue; /* matches inline but centralized here */
}

table {
	width: 65%;
	margin-left: auto; 
	margin-right: auto;
	border-color: #545859;
	border-style: ridge;
	border-width: 10px;
}

.menu {
	text-align: center;
	width: 60%;
}

/* 2. Added hover effect for menu icons */
.menuicon img:hover {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

.menupipe {
	width: 1%;
}

th {
	color: white; 
	background-color: #757775;
}

tr.stripe {
	background-color: #90EE90;
}

td.bolder {
	font-weight: bold;
}

caption {
	caption-side: bottom;
	font-style: italic;
}

/* 3. Added style for all h1 headings */
h1 {
	font-size: 2em;
	text-shadow: 2px 2px 4px #000000;
	color: #FFD700;
}

/* 4. Added paragraph style for better readability */
p {
	line-height: 1.6;
	text-align: justify;
}

/* 5. Added box style for a content section */
.content-box {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	width: 60%;
	margin: 0 auto;
}