.ec-table-wrap {
  width: 100%;
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
  margin: 16px 0 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ec-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ec-table th,
.ec-table td {
  border: none;
  text-align: left;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

.ec-table th {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.ec-table td {
  color: #333;
  background-color: #f8f8f8;
}

.ec-table tbody tr:nth-child(even) td {
  background-color: #f0f0f0;
}

.ec-table tbody tr:hover td {
  background-color: #eaeaea;
  transition: background-color 0.2s ease;
}

.ec-nowrap {
  white-space: nowrap;
}

.ec-logo {
  margin: 0 auto;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
  display: block;
}

.ec-highlight {
  background-color: #dbeeff !important;
}

.ec-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.ec-search-box {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.ec-search-input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.ec-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.blinking-text {
  color: green !important;
  animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ec-table-wrap {
    padding: 8px;
  }

  .ec-table {
    min-width: 480px;
  }

  .ec-table th,
  .ec-table td {
    font-size: 12px;
    padding: 8px 9px;
  }
}

@media (max-width: 480px) {
  .ec-table {
    min-width: 420px;
  }

  .ec-table th,
  .ec-table td {
    font-size: 11px;
    padding: 7px 8px;
  }
}
