table {
  width: 95%;
  border-collapse: collapse;
  margin: 16px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  table-layout: auto;
  max-width: 100%;
  word-wrap: break-word;
}

th,
td {
  border: 1px solid #ccc;
  padding: 6px 8px;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

th {
  background-color: #4285F4;
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 8px;
  line-height: 1.2;
}

td a {
  display: block;
  text-align: center;
  font-size: 13px;
}

select {
  min-width: 260px;
  max-width: 260px;
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;

  color: #333;
  background-color: #fff;

  border: 1px solid #cbd5e1;
  border-radius: 8px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* Hover */
select:hover {
  border-color: #94a3b8;
}

select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

select option:disabled {
  color: #94a3b8;
}

select option[value="__add_new__"] {
  font-weight: 600;
  color: #2563eb;
}