.custom-award-table {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.custom-award-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-award-table th, .custom-award-table td {
  text-align: center;
  padding: 12px;
  border: 1px solid #ddd;
}

.custom-award-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.custom-award-table img {
    max-width: 80px;
    border-radius: 8px;
    background-color: #fff; /* Arka planı beyaz yapar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif bir gölge efekti */
    padding: 5px; /* Logonun gölge ile arasında boşluk bırakır */
}

.custom-award-table .button {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background-color: #0073aa;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.custom-award-table .button:hover {
  background-color: #005177;
}

