.test-test {
  background: red;
}

.dry-data-table {
  border-radius: 12px;
  border: 1px solid var(--Gray-200, #eaecf0);
  background: var(--Base-White, #fff);

  /* Shadow/sm */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}
table {
  width: 100%;
}
// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
  .dry-data-table {
  }
}
// Adjusting for smaller screens (small tablets and mobile)
@media (max-width: 768px) {
  .dry-data-table {
    border-radius: unset;
    border: unset;
    background: unset;
    box-shadow: unset;
  }
}
// Adjusting  for smaller screens (mobile)
@media (max-width: 480px) {
  .dry-data-table {
    border-radius: unset;
    border: unset;
    background: unset;
    box-shadow: unset;
  }
}
