:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4895ef;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #4cc9f0;
  --warning-color: #f72585;
  --gray-light: #e9ecef;
}

.tabel-design-7 .table-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  max-width: 1200px;
}
.tabel-design-7 .table-container .table-header {
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px 25px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.tabel-design-7 .table-container .table-header .table-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}
.tabel-design-7 .table-container .table-header .table-title i {
  margin-right: 12px;
  font-size: 1.8rem;
}
.tabel-design-7 .custom-table {
  margin-bottom: 0;
}
.tabel-design-7 .custom-table thead th {
  background-color: var(--gray-light);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 15px;
  color: var(--dark-color);
}
.tabel-design-7 .custom-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #dee2e6;
}
.tabel-design-7 .custom-table tbody tr:hover {
  background-color: rgba(67, 97, 238, 0.05);
}
.tabel-design-7 .custom-table tbody td {
  padding: 15px;
  vertical-align: middle;
}
.tabel-design-7 .accordion-toggle {
  cursor: pointer;
  transition: all 0.3s ease;
}
.tabel-design-7 .accordion-toggle:hover {
  color: var(--primary-color);
}
.tabel-design-7 .accordion-toggle i {
  transition: transform 0.3s ease;
}
.tabel-design-7 .accordion-toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.tabel-design-7 .accordion-content {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}
.tabel-design-7 .status-badge {
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.tabel-design-7 .status-badge.status-active {
  background-color: rgba(76, 201, 240, 0.2);
  color: #1a936f;
}
.tabel-design-7 .status-badge.status-pending {
  background-color: rgba(247, 37, 133, 0.2);
  color: #b5179e;
}
.tabel-design-7 .status-badge.status-completed {
  background-color: rgba(67, 97, 238, 0.2);
  color: var(--primary-color);
}
.tabel-design-7 .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.tabel-design-7 .user-info {
  display: flex;
  align-items: center;
}
.tabel-design-7 .progress {
  height: 8px;
  border-radius: 4px;
}
.tabel-design-7 .action-btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-right: 5px;
}
@media (max-width: 576px) {
  .tabel-design-7 body {
    padding: 10px;
  }
  .tabel-design-7 .table-header {
    padding: 15px;
  }
  .tabel-design-7 .table-title {
    font-size: 1.2rem;
  }
  .tabel-design-7 .custom-table tbody td::before {
    width: 40%;
    font-size: 0.85rem;
  }
  .tabel-design-7 .user-info {
    justify-content: flex-end;
  }
}/*# sourceMappingURL=tableDesign7.css.map */