p {
  font-size: 16px; /* Set the desired font size */
}

/* Existing styles */
.job-details {
  border: 2px solid #ddd;
  padding: 20px;
  margin: 20px 0;
  border-radius: 20px;
}
.job-header {
  display: flex;
  align-items: center;
}
.company-logo {
  height: 100px; /* Set a fixed height */
  width: 100px; /* Maintain aspect ratio */
  margin-right: 20px;
  object-fit: contain; /* Ensure the image maintains its aspect ratio */
}
.job-info {
  flex-grow: 1;
}
.job-title {
  margin: 0;
  font-size: 24px;
}
.company-name {
  margin: 5px 0;
  font-size: 18px;
  color: #555;
}
.experience, .status {
  margin: 5px 0;
  font-size: 16px;
  color: #777;
}
.status .active {
  color: green;
}
.apply-button {
  text-align: right;
}
.apply-button .btn {
  padding: 10px 20px;
  font-size: 16px;
}

.pagination-button {
  margin: 0 5px;
  padding: 10px 15px;
  border: none;
  background-color: #f8f9fa;
  color: #007bff;
  cursor: pointer;
}

.pagination-button.active {
  background-color: #007bff;
  color: #fff;
}

.pagination-button:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.no-jobs-message {
  text-align: center;
  font-size: 18px;
  color: #ff0000;
  margin: 20px 0;
}

#search-box {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}