/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

/* Navbar Styling */
.navbar {
  background-color: #007bff; /* Dark background */
}

.navbar-brand, .nav-link {
  color: #fff !important;
  font-weight: bold;
}

.navbar-brand:hover, .nav-link:hover {
  color: #d4d4d4 !important;
}

/* Footer Styling */
footer {
  background-color: #796cf5;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
}

.footer-links a:hover {
  color: #007bff;
}

/* Job Listings Styling */
table {
  border-collapse: separate;
  border-spacing: 10 10px; /* Space between rows */
}

table thead th {
  background-color: #007bff;
  color: white;
}

table tbody tr {
  background-color: white;
}

table tbody tr:hover {
  background-color: #f1f1f1;
}

table img {
  border-radius: 50%;
  max-width: 40px;
}

/* Search Form */
.form-label {
  font-weight: bold;
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
}

.is-empty {
  border: 2px solid red !important;
}
.is-invalid {
  border: 2px solid red !important;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-btn {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.login-btn:hover {
  background-color: #45a049;
}
.forgot-password {
  text-align: center;
  margin-top: 10px;
}
.forgot-password a {
  color: #4CAF50;
  text-decoration: none;
}
.forgot-password a:hover {
  text-decoration: underline;
}