.dashboard-section {
  margin: 43px 60px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-top-subsection {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}


/* ---------GREETING CARD--------- */

.dashboard-greeting-card {
  background-color: rgba(255, 255, 255, 1);
  padding: 53px 173px 75px 33px;
  border-radius: 40px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 47px;
  width: 50%;
}

.welcome-text h1 {
  color: rgba(0, 0, 0, 1);
  font-weight: 375;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}

.welcome-text p {
  font-weight: 375;
  font-size: 29px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(171, 171, 171, 1);
}

.daily-metrics {
  display: flex;
  text-align: center;
  gap: 32px;
}

.metric-label {
  color: rgba(249, 156, 144, 1);
  font-weight: 375;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.metric-value {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}


/* ----------UPDATES CARD--------- */

.dashboard-updates-card {
  background-color: rgba(255, 255, 255, 1);
  padding: 26px 54px;
  border-radius: 40px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 50%;
}

.updates-card-heading {
  border: 1px solid rgba(49, 49, 49, 1);
  border-radius: 30px;
  padding: 8px 0;
  text-align: center;
  width: 100%;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.updates-list li {
  padding-left: 16px;
  position: relative;
}

.updates-list li::after {
  content: '';
  position: absolute;
  background-color: rgba(247, 132, 117, 1);
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  border-radius: 10px;
}

.check-status-button {
  width: fit-content;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 30px;
  cursor: pointer;
  margin-top: auto;
}

.check-status-button:hover {
  background-color: black;
  color: white;
}

/* ---------PRODUCTS SOLD CARD--------- */

.dashboard-products-sold-card {
  background-color: rgba(255, 255, 255, 1);
  padding: 35px 40px;
  height: 508px;
  border-radius: 40px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.dashboard-products-sold-card h1 {
  font-weight: 596;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 5%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.table-container {
  max-width: 100%;
  overflow-y: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.heading-row th{
  padding: 8px 47px 16px;
  text-align: center;
  
  font-weight: 494;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(141, 141, 141, 1);

  position: sticky;
  top: 0;
  background-color: white; /* Or match your card background */
  z-index: 2;
  border-bottom: 1px solid rgba(247, 247, 247, 1);
}

.product-sold,
.product-returns,
.product-revenue {
  font-family: 'Inter';
}

td,
th {
  text-align: center;
  padding: 24px 0;
}

td img {
  height: 54px;
  border-radius: 14px;
}

.product-type span {
  border: 1px solid black;
  padding: 3px 32px;
  border-radius: 30px;
}

td div {
  display: flex;
  align-items: center;
}