/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Title Styling */
.page-title {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.section-title {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.5em;
  border-bottom: 2px solid #014bae;
  display: inline-block;
  padding-bottom: 5px;
}

/* Table Styling */
.project-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto; /* Center the table */
}

.project-table th,
.project-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.project-table th {
  background-color: #014bae;
  color: #fff;
  font-weight: bold;
}

.project-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.project-table tr:hover {
  background-color: #f1f1f1;
}

/* Card Section */
.card-section {
  margin-bottom: 40px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25em;
  color: #333;
  margin-bottom: 10px;
}

.card-description {
  color: #555;
}

.search-input {
  width: 98%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .search-input {
    width: 93%;
  }
  .project-table th,
  .project-table td {
    padding: 7px;
  }
  .project-table th {
    font-size: 15px;
  }
  .project-table td {
    font-size: 13px;
  }
}
