body {
	font-family: 'Akaya Kanadaka', cursive;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.15;
	z-index: -1; /* Pushes the image behind the text content */

	/* Replace the URL below with your actual image path */
	background-image: url("../images/ust1.png");
	background-size: cover;
	background-position: center;
}

h2 {
	font-size: 2rem;
	color: gold;
}
/*

table {
  margin-left: 0;
  margin-right: auto;
  width: 90%;
  padding: 10px;
  border-collapse: collapse;  
}

*/

/*
th, td {
  padding: 10px 15px;  
  font-size: 1rem;     
}
*/

table {
  font-family: 'Akaya Kanadaka', cursive;
  margin-left: 0;
  margin-right: auto;
  width: 60%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  /* background-color: black; */
  color: black;
}

img {
	border-radius: 10%;
}

.central {
	text-align: center;
}

.tiger-image {
	height: 60px;
    width: 60px;
    float: left;
	left: 20px;
	top: 5px;
}


.footer {
	position: fixed;
	text-align: center;
	left: 0;
	bottom: 5px;
	width: 100%;
	height: 40px;
}

.footer p {
	font-size: 1rem;
}

.footer-font {
  font-size: 1rem;
  color: #1b4d3e;
  font-weight: bold;
}

/* 1. Center the child element inside the wrapper */
.navbar-container {
  text-align: center;
  background-color: #333;
}

/* 2. Force the list to shrink-to-fit its content */
.navbar-list {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* 3. Float the list items to sit horizontally */
.navbar-list li {
  float: left;
}

/* 4. Style the links */
.navbar-list a {
  display: block;
  color: gold;
  padding: 14px 20px;
  text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	font-size: 1.2rem;
}

.alert-danger {
	background-color: red;
	padding-left: 1rem;
	color: white;
	text-align: left;
	display: inline-block;
	width: 50%;
}

.alert-success {
	background-color: green;
	padding-left: 1rem;
	color: white;
	text-align: left;
	display: inline-block;
	width: 50%;
}


.flex-container {
	display: flex; /* Establishes the flex context */
	gap: 20px; /* Optional: adds space between columns */
}

.column {
	flex: 1; /* Distributes space equally among columns */
	padding: 15px;
}


.pagination { 
	display: flex; 
	gap: 10px; 
	align-items: center; 
}

.btn { 
	padding: 8px 16px; 
	text-decoration: none; 
	border: 1px solid #ccc; 
	background: #f9f9f9; 
	color: #333; 
}

.btn.disabled { 
	pointer-events: none; 
	background: #eee; 
	color: #999; 
}

.btn.active { 
	font-weight: bold; 
	background: #ddd; 
}