/* V24.47 — ações de cliente visíveis somente na área do proprietário */
.client-owner-tools-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 12px;
  padding: 9px 12px;
  border: 1px solid #ead8d4;
  border-radius: 12px;
  background: #fff8f6;
  color: #8f3830;
  font-size: 9px;
  font-weight: 800;
}

.client-table-row {
  cursor: pointer;
}

.client-row-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.client-row-open,
.client-row-delete {
  flex: 0 0 auto;
}

.client-row-delete {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #ddaaa5;
  border-radius: 9px;
  background: #fff4f2;
  color: #a62f29;
  font-size: 8px;
  font-weight: 900;
  cursor: pointer;
}

.client-row-delete:hover {
  border-color: #b7372f;
  background: #b7372f;
  color: #fff;
  box-shadow: 0 9px 22px #8e211f26;
}

.client-row-delete:disabled {
  cursor: not-allowed;
  opacity: .45;
}

@media (max-width: 760px) {
  .client-owner-tools-note {
    margin: 0 12px 10px;
    font-size: 8px;
  }

  .client-row-actions {
    justify-content: flex-start;
  }

  .client-row-delete {
    min-height: 36px;
    padding: 0 13px;
  }
}
