 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 90%;
    margin: 20px auto;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 400px !important;     /* fixed width */
    height: 250px !important;    /* fixed height */
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}


/* Style for mentoring page */

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #f2f2f2;
}

thead th {
  font-weight: bold;
  padding: 8px;
  text-align: left;
  border-bottom: 2px solid #ddd;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
  background-color: #f1f1f1;
}








