.client-dashboard {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
html.dark .client-dashboard {
  background-color: #2A3142;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.client-header {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid rgba(74, 74, 255, 0.1);
}
html.dark .client-header {
  border-bottom-color: rgba(122, 154, 255, 0.2);
}

.client-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A4AFF;
}
html.dark .client-title {
  color: #7A9AFF;
}

.client-content {
  padding: 1.5rem 2rem;
}
html.dark .client-content {
  background-color: #2A3142;
}

.client-table-container {
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
html.dark .client-table-container {
  background: transparent;
  box-shadow: none;
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  color: #1a1a2e;
}
html.dark .client-table {
  color: #E0E0E0;
}

.client-thead {
  background: rgba(74, 74, 255, 0.03);
}
html.dark .client-thead {
  background: rgba(122, 154, 255, 0.05);
}

.client-th {
  padding: 1rem;
  color: #4A4AFF;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(74, 74, 255, 0.1);
  text-align: left;
}
html.dark .client-th {
  color: #7A9AFF;
  border-bottom-color: rgba(122, 154, 255, 0.2);
}

.client-tr {
  transition: background 0.2s ease;
}
.client-tr:nth-child(even) {
  background: rgba(236, 239, 244, 0.3);
}
.client-tr:hover {
  background: rgba(74, 74, 255, 0.05) !important;
}
html.dark .client-tr {
  background-color: rgba(62, 74, 99, 0.3);
}
html.dark .client-tr:nth-child(even) {
  background-color: rgba(62, 74, 99, 0.5);
}
html.dark .client-tr:hover {
  background-color: rgba(122, 154, 255, 0.08) !important;
}

.client-td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}
html.dark .client-td {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.client-col-index {
  width: 50px;
  text-align: center;
}

.client-col-partners {
  min-width: 150px;
  max-width: 200px;
}

.client-col-name {
  min-width: 180px;
  max-width: 250px;
}

.client-col-trade {
  min-width: 180px;
  max-width: 250px;
}

.client-col-tax {
  width: 140px;
}

.client-col-sites {
  width: 80px;
  text-align: center;
}

.client-col-actions {
  width: 150px;
  text-align: right;
}

.client-empty {
  padding: 3rem !important;
  text-align: center;
}

.client-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(0, 0, 0, 0.4);
}
html.dark .client-empty-state {
  color: rgba(224, 224, 224, 0.6);
}

.client-empty-icon {
  font-size: 2rem;
  color: #4A4AFF;
  opacity: 0.7;
}
html.dark .client-empty-icon {
  color: #7A9AFF;
}

.client-empty-text {
  margin: 0;
  font-size: 1rem;
  color: #1a1a2e;
}
html.dark .client-empty-text {
  color: #E0E0E0;
}

.client-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.client-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.client-btn-secondary {
  background: white;
  color: #4A4AFF;
  border: 1px solid rgba(74, 74, 255, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.client-btn-secondary:hover {
  background: rgba(74, 74, 255, 0.05);
  border-color: #4A4AFF;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
html.dark .client-btn-secondary {
  background: transparent;
  color: #7A9AFF;
  border: 1px solid rgba(122, 154, 255, 0.4);
}
html.dark .client-btn-secondary:hover {
  background: rgba(122, 154, 255, 0.1);
  color: #7A9AFF;
}

.client-icon {
  font-size: 1em;
}

.client-btn-text {
  white-space: nowrap;
}

@media (min-width: 1650px) {
  .client-table-container {
    padding: 0 1rem;
  }
  .client-col-partners {
    min-width: 180px;
    max-width: 220px;
  }
  .client-col-name,
  .client-col-trade {
    min-width: 200px;
    max-width: 280px;
  }
}
@media (max-width: 1400px) {
  .client-col-partners {
    min-width: 140px;
    max-width: 180px;
  }
  .client-col-name,
  .client-col-trade {
    min-width: 160px;
    max-width: 220px;
  }
  .client-col-tax {
    width: 120px;
  }
}
@media (max-width: 1200px) {
  .client-header {
    padding: 1.25rem 1.5rem;
  }
  .client-title {
    font-size: 1.3rem;
  }
  .client-content {
    padding: 1.25rem 1.5rem;
  }
  .client-th {
    padding: 0.9rem;
    font-size: 0.8rem;
  }
  .client-td {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }
  .client-col-partners {
    min-width: 120px;
    max-width: 160px;
  }
  .client-col-name,
  .client-col-trade {
    min-width: 140px;
    max-width: 180px;
  }
  .client-col-tax {
    width: 100px;
  }
  .client-col-sites {
    width: 70px;
  }
  .client-col-actions {
    width: 130px;
  }
}
@media (max-width: 700px) {
  .client-table {
    display: block;
    width: 100%;
  }
  .client-table thead {
    display: none;
  }
  .client-table tbody, .client-table tr, .client-table td {
    display: block;
    width: 100%;
  }
  .client-table tr {
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .client-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  html.dark .client-table tr {
    background: #2E384D;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  html.dark .client-table tr:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .client-table td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  html.dark .client-table td {
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
  .client-table td:first-child {
    display: none;
  }
  .client-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #4A4AFF;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  html.dark .client-table td:before {
    color: #7A9AFF;
  }
  .client-table td:last-child {
    border-bottom: none;
    justify-content: center;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    background: rgba(74, 74, 255, 0.03);
  }
  html.dark .client-table td:last-child {
    background: rgba(122, 154, 255, 0.05);
  }
  .client-table td:last-child:before {
    display: none;
  }
  .client-table td:last-child .client-actions {
    width: 100%;
    justify-content: center;
  }
  .client-col-index,
  .client-col-partners,
  .client-col-name,
  .client-col-trade,
  .client-col-tax,
  .client-col-sites,
  .client-col-actions {
    width: auto;
    min-width: 0;
    max-width: none;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .client-dashboard {
    border-radius: 0.75rem;
  }
  .client-header {
    padding: 1rem 1.25rem !important;
  }
  .client-title {
    font-size: 1.2rem !important;
  }
  .client-content {
    padding: 1rem !important;
  }
  .client-table tr {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
  }
  .client-table td {
    padding: 0.65rem 0.9rem !important;
    font-size: 0.9rem;
  }
  .client-table td:before {
    font-size: 0.85rem;
    margin-right: 0.75rem;
  }
  .client-btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.85rem !important;
  }
}
@media (max-width: 450px) {
  .client-dashboard {
    border-radius: 0.5rem;
    margin: 0 0 1.5rem 0 !important;
  }
  .client-header {
    padding: 0.9rem 1rem !important;
  }
  .client-title {
    font-size: 1.1rem !important;
  }
  .client-table tr {
    margin-bottom: 0.75rem;
    border-radius: 0.4rem;
  }
  .client-table td {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem;
  }
  .client-table td:before {
    width: 100px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
  }
  .client-btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
  }
  .client-icon {
    font-size: 1.1em;
    margin-right: 0;
  }
  .client-empty {
    padding: 1.5rem !important;
  }
  .client-empty .client-empty-icon {
    font-size: 1.6rem;
  }
  .client-empty .client-empty-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 360px) {
  .client-table td:before {
    width: 90px;
    font-size: 0.75rem;
  }
  .client-btn {
    padding: 0.35rem 0.7rem !important;
  }
}/*# sourceMappingURL=client_list.css.map */