/* General Styles */
body {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

/* Navbar Styles */
.navbar {
  background-color: #343a40;
  border-bottom: 1px solid #dee2e6;
}

.navbar-brand, .navbar-nav .nav-link {
  color: #ffffff;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
  color: #f8f9fa;
}

/* Container Styles */
.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Table Styles */
.table {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
  border-top: none;
  vertical-align: middle;
}

.table thead th {
  border-bottom: 2px solid #dee2e6;
  color: #495057;
  font-weight: bold;
  background-color: #343a40;
  color: #ffffff;
  text-align: center;
}

.table tbody tr {
  text-align: center;
}

.table-hover tbody tr:hover {
  background-color: #f1f1f1;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(90deg, #007bff, #007bff);
  border: none;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0056b3, #0056b3);
}

/* List Group Styles */
.list-group-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: center;
}

/* Footer Styles */
footer {
  background-color: #343a40;
  color: #f8f9fa;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

/* Header and Text Styles */
h1, h2, h3 {
  color: #495057;
  text-align: center;
}

p {
  color: #6c757d;
  text-align: center;
}
