/* Global Styling */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

nav {
	background: #1A5D6E !important;
	color: #fff;
	padding: 5px 15px !important;
	display: flex;
	gap: 20px;
	align-items: center;
	min-height: 60px;
	text-align: left !important;
}

.nav-logo {
	height: 60px !important;
	width: auto !important;
	margin-right: 20px;
	display: block;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	vertical-align: middle;
}

/* Client Branding in Navbar */
.nav-client-branding {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.client-logo {
	height: 40px;
	max-width: 120px;
	object-fit: contain;
}

.client-name {
	color: white;
	font-weight: 500;
	font-size: 14px;
}

/* Dropdown Menu Styling */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown .dropbtn {
	color: white;
	text-decoration: none;
	font-size: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px 5px;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #1A5D6E;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1000;
	top: 100%;
	left: 0;
	margin-top: 0;
	padding-top: 0;
}

.dropdown-content a {
	color: white;
	padding: 10px 16px;
	text-decoration: none;
	display: block;
	font-size: 14px;
}

.dropdown-content a:hover {
	background-color: #134652;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	color: #ddd;
	background-color: #1A5D6E;
}

.container {
	padding: 10px;
}

/* Header Actions */
.header-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

/* Table Styling */
.table-responsive {
	overflow-x: auto;
	/* Makes the table scrollable horizontally on small screens */
}

table.minimalistBlack {
	border: 3px solid #000000;
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

table.minimalistBlack td,
table.minimalistBlack th {
	border: 1px solid #000000;
	padding: 5px;
	font-size: 13px;
}

table.minimalistBlack tbody td {
	font-size: 12px;
}

table.minimalistBlack thead {
	background: #cfcfcf;
	background: -moz-linear-gradient(top, #dbdbdb 0%, #d3d3d3 66%, #cfcfcf 100%);
	background: -webkit-linear-gradient(top, #dbdbdb 0%, #d3d3d3 66%, #cfcfcf 100%);
	background: linear-gradient(to bottom, #dbdbdb 0%, #d3d3d3 66%, #cfcfcf 100%);
	border-bottom: 3px solid #000000;
}

table.minimalistBlack thead th {
	font-size: 13px;
	font-weight: bold;
	color: #000000;
	text-align: left;
}

/* Buttons */
.test-button {
	display: inline-block;
	padding: 4px 10px;
	font-size: 13px;
	font-weight: bold;
	color: black;
	text-align: center;
	text-decoration: none;
	background-color: #cfcfcf;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
	.header-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.test-button {
		font-size: 12px;
		padding: 4px 6px;
	}

	table.minimalistBlack td,
	table.minimalistBlack th {
		padding: 4px;
		font-size: 6px;
	}

	table.minimalistBlack thead th {
		font-size: 12px;
	}
}

/* Delete Confirmation Page Styling */
.confirm-delete-box {
	max-width: 600px;
	margin: 20px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.confirm-delete-box p {
	font-size: 18px;
	margin-bottom: 20px;
	color: #333;
}

.confirm-delete-box .button-group {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.confirm-delete-box .delete-button {
	background-color: #dc3545;
	color: white;
	border: none;
}

.confirm-delete-box .delete-button:hover {
	background-color: #c82333;
}