/*
  Font family is Nunito Sans. Its fallback is Helvetica
*/
/*
  Font sizes have been converted to rem considering a base size of 16px.
*/
/*
*  Z-Index
*  
*  The z-index CSS property sets the z-order of a positioned element and its descendants or flex items. 
*  Overlapping elements with a larger z-index cover those with a smaller one.
*  
*  REF: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
*  REF: https://www.smashingmagazine.com/2019/04/z-index-component-based-web-application/  
*/
/**
 * Define media query values
 */
:host {
  display: block;
  width: 100%;
}
:host .table {
  display: grid;
  font-family: "Nunito Sans", "Carbona", "Tahoma", "Helvetica", "Arial", sans-serif;
  color: var(--color-content-default, #282828);
  width: 100%;
  border: 1px solid var(--color-border-3, rgba(0, 0, 0, 0.06));
  border-radius: 8px;
  overflow-x: auto;
  background-color: var(--color-surface-1, #f6f6f6);
}
:host .table .thead {
  border-bottom: 1px solid var(--color-border-1, rgba(0, 0, 0, 0.2));
  padding: 0 16px;
}
:host .table .thead .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  align-items: center;
  height: 64px;
  gap: 16px;
}
:host .table .thead .header .header-title {
  height: 64px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
:host .table .thead .header .header-title .title-click {
  cursor: pointer;
}
:host .table .body-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 16px;
  gap: 16px;
  border-bottom: 1px solid var(--color-border-2, rgba(0, 0, 0, 0.16));
}
:host .table .body-row .body-item {
  height: 48px;
  width: 100%;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
:host .table .body-row:last-child {
  border-bottom: none;
}