

.header {
  position: relative;
}

.header-img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3);
}

.header-text {
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 1;

  font-size: 16px;
  font-weight: 700;
  color: #f19e07;
}

.table {
  padding: 12px;
}

.table-row {
  padding: 8px 12px 8px 12px;
  background-color: #fbfbfb;
  border-radius: 12px;
}

.table-data {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
  padding-bottom: 10px;
}

.table-data-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 20.61px;
}

.item-body {
  font-size: 11px;
  font-weight: 700;
  color: #a09e9e;
  text-align: center;
}

.table-data-icon {
  align-self: center;
  background-color: #ffe5b5;
  height: 25px;
  width: 25px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-data-extra {
  display: grid;
  padding: 10px 0;
  grid-template-columns: 50% 50%;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.extra-data-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.extra-data-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 20.61px;
}

.extra-data-body {
  font-size: 11px;
  font-weight: 700;
  color: #a09e9e;
  text-align: center;
}

.actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

.actions-text {
  font-size: 11px;
  font-weight: 700;
}

.actions-wrapper {
  display: flex;
  flex-direction: row;
}

.action-btn {
  border: unset;
  background-color: unset;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  cursor: pointer;
}

.actions-edit {
  color: #1490d2;
  border-left: 1px solid #f0f0f0;
}

.actions-delete {
  color: #ef3636;
  border-right: 1px solid #f0f0f0;
}

@media screen and (min-width: 600px) {
  .header-img {
    height: 200px;
  }
}
