/* General Styling */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100vh;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative; /* Required for background overlay */
	overflow: hidden; /* Prevent scrollbars due to pseudo-element */
}

/* Background Image with Blur */
body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('underscored-admirals-club-dca-lounge-pavilion.jpeg') no-repeat center center fixed;
	background-size: cover;
	filter: blur(8px); /* Apply blur to the background */
	z-index: -1; /* Ensure the background stays behind content */
}

/* Centered Box Styling */
.container {
	max-width: 800px; /* Increased from 400px */
	margin: auto;
	padding: 30px; /* Slightly increased padding for better spacing */
	background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow for a more prominent look */
	text-align: center; /* Center the text inside the box */
	z-index: 1; /* Ensure the content is above the background */
}

/* Heading Styling */
h2 {
	margin-bottom: 20px;
	color: #333;
}

/* Paragraph Styling */
p {
	margin-bottom: 20px;
	color: #555;
}

/* Button Links (e.g., Approve/Decline or Admin Dashboard) */
.button-link {
	display: inline-block;
	padding: 8px 12px;
	background-color: #007BFF;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 14px;
}

.button-link:hover {
	background-color: #0056b3;
}

/* Form Styling */
form input {
	width: calc(100% - 20px);
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
}

form button {
	width: 100%;
	padding: 10px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

form button:hover {
	background-color: #0056b3;
}

/* Navigation Links */
.nav {
	text-align: center;
	margin-top: 20px;
}

.nav a {
	margin: 0 10px;
	color: #007BFF;
	text-decoration: none;
	font-size: 14px;
}

.nav a:hover {
	text-decoration: underline;
}

/* Message Styling */
.message {
	text-align: center;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 5px;
}

.message.success {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
}

.message.error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
}

/* Admin Item Styling */
.admin-item {
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin-item p {
	margin: 0;
	font-size: 14px;
}

.admin-item a {
	color: #007BFF;
	margin: 0 5px;
	text-decoration: none;
	font-size: 14px;
}

.admin-item a:hover {
	text-decoration: underline;
}

/* Dashboard Header */
.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.logout-button {
	padding: 10px 20px;
	background-color: #ff4d4d;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
}

.logout-button:hover {
	background-color: #e60000;
}

/* Styled Table */
.styled-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 16px;
	text-align: left;
}

.styled-table th, .styled-table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
}

.styled-table thead th {
	background-color: #007BFF;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
}

.styled-table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.styled-table tbody tr:hover {
	background-color: #f1f1f1;
}

.styled-table tbody tr td.status-pending {
	color: #ffa500; /* Orange */
	font-weight: bold;
}

.styled-table tbody tr td.status-declined {
	color: #ff4d4d; /* Red */
	font-weight: bold

/* Responsive Adjustments */
@media (max-width: 768px) {
	.container {
		width: 90%;
		padding: 15px;
	}

	h2 {
		font-size: 18px;
	}

	p {
		font-size: 14px;
	}
}

