/* Custom table styling for Cactus theme */
.cactus-table-wrapper {
  margin: 1rem 0 0.5rem 0;
  overflow-x: auto;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.cactus-table-wrapper table {
  width: 100% !important;
  min-width: 100%;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  table-layout: fixed !important;
  display: table !important;
  font-family: "Menlo", "Meslo LG", monospace;
  font-size: 13px;
  line-height: 1.5;
  background-color: #1d1f21;
  border: 1px dotted #908d8d;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: left;
}

.cactus-table-wrapper col.col-1 {
  width: 50% !important;
}

.cactus-table-wrapper col.col-2 {
  width: 50% !important;
}

.cactus-table-wrapper thead {
  background-color: rgba(43, 188, 138, 0.15);
  border-bottom: 1px dotted #908d8d;
}

.cactus-table-wrapper th {
  padding: 0.5rem 0.75rem !important;
  text-align: left !important;
  font-weight: 600 !important;
  color: #2bbc8a !important;
  border-bottom: 1px dotted #908d8d !important;
  border-right: 1px dotted rgba(144, 141, 141, 0.3) !important;
  box-sizing: border-box;
  font-size: 13px !important;
}

.cactus-table-wrapper th:last-child {
  border-right: none;
}

.cactus-table-wrapper tbody tr {
  border-bottom: 1px dotted rgba(144, 141, 141, 0.2);
  transition: background-color 0.2s ease;
}

.cactus-table-wrapper tbody tr:last-child {
  border-bottom: none;
}

.cactus-table-wrapper tbody tr:hover {
  background-color: rgba(43, 188, 138, 0.08);
}

.cactus-table-wrapper td {
  padding: 0.5rem 0.75rem !important;
  color: #c9cacc !important;
  border-bottom: none !important;
  border-right: 1px dotted rgba(144, 141, 141, 0.2) !important;
  box-sizing: border-box;
}

.cactus-table-wrapper td:last-child {
  border-right: none;
}

.cactus-table-wrapper tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.cactus-table-wrapper tbody tr:nth-child(even):hover {
  background-color: rgba(43, 188, 138, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cactus-table-wrapper {
    margin: 1rem 0 0.5rem 0;
  }
  
  .cactus-table-wrapper table {
    font-size: 12px;
  }
  
  .cactus-table-wrapper th,
  .cactus-table-wrapper td {
    padding: 0.4rem 0.6rem;
  }
}

