/* Start custom CSS for shortcode, class: .elementor-element-c2e3924 */.awarded-table td:first-child,
.awarded-table th:first-child {
  width: 210px; /* You can adjust this value */
  max-width: 340px;
  word-break: break-word;
}

.awarded-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-top: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.awarded-table thead {
  background-color: #7F00F2;
  color: white;
}

.awarded-table th, .awarded-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.awarded-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.awarded-table tbody tr:hover {
  background-color: #eef7f2;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .awarded-table, .awarded-table thead, .awarded-table tbody,
  .awarded-table th, .awarded-table td, .awarded-table tr {
    display: block;
  }

  .awarded-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .awarded-table tr {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .awarded-table td {
    position: relative;
    padding-left: 50%;
    text-align: right;
    border-bottom: 1px solid #eee;
  }

  .awarded-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 10px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}
.sort-icons {
  font-size: 10px;
  line-height: 1;
  margin-left: 6px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  vertical-align: middle;
}
.sort-icons.asc {
  color: #4caf50;
}
.sort-icons.desc {
  color: #f44336;
}/* End custom CSS */