:root {
  --neon: #00ffd5;
}

/* wrapper */
.table-wrapper {
  width: 90%;
  margin: 40px auto;
}

/* جدول */
.cool-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

/* هدر */
.cool-table thead {
  background: #0f172a;
  color: white;
}

/* سلول‌ها */
.cool-table th,
.cool-table td {
  padding: 14px 18px;
  text-align: center;
}

/* ردیف‌ها */
.cool-table tbody tr {
  background: #fff;
  transition: 0.3s;
}

.cool-table tbody tr:nth-child(even) {
  background: #f5f7ff;
}

.cool-table tbody tr:hover {
  background: #e8f0ff;
}

/* ⭐ مهم‌ترین بخش: عملیات */
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;

  width: 100%;
  white-space: nowrap; /* جلوگیری از شکستن */
}

/* آیکن‌ها */
.actions i {
  flex-shrink: 0;

  width: 32px;
  height: 32px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

/* hover */
.actions i:hover {
  transform: scale(1.2);
  color: var(--neon);
  background: rgba(0, 255, 213, 0.1);
}

/* ستون‌بندی */
.cool-table td:nth-child(1) {
  text-align: right;
}

/* 📱 موبایل */
@media (max-width: 768px) {
  .cool-table th,
  .cool-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .actions i {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

a{
  text-decoration: none;
  color: #000000;
}
 