:root {
  --primary: #ff4d8f;
  --primary-dark: #c82d68;
  --bg: #fff7fb;
  --text: #211923;
  --muted: #81717b;
  --line: #f3d6e2;
  --card: #ffffff;
  --shadow: 0 12px 34px rgba(255, 77, 143, 0.16);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 14px 86px;
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 36%, #fff7fb 100%);
}

.topbar,
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 12px;
}

.title-block h1,
.title-block h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.title-block p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: #ffe7f0;
  font-weight: 800;
}

.notice {
  overflow: hidden;
  margin: 4px 0 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.notice span {
  display: inline-block;
  min-width: 100%;
  padding: 10px 12px;
  color: var(--primary-dark);
  font-size: 13px;
  white-space: nowrap;
  animation: ticker 14s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(96%); }
  to { transform: translateX(-100%); }
}

.banner {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d8f, #ff8ab6);
  box-shadow: var(--shadow);
}

.banner h2 {
  margin: 0;
  font-size: 28px;
}

.banner p {
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}

.quick-actions,
.tabs,
.bottom-nav {
  display: grid;
  gap: 10px;
}

.quick-actions {
  grid-template-columns: 1fr 1fr;
  margin: 14px 0;
}

.action-btn,
.primary-btn,
.secondary-btn,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.action-btn,
.primary-btn {
  color: #fff;
  background: var(--primary);
}

.secondary-btn {
  color: var(--primary-dark);
  background: #ffe7f0;
}

.danger-btn {
  color: #fff;
  background: #e84d5b;
}

.tabs {
  grid-template-columns: 1fr 1fr 48px;
  align-items: center;
  margin: 4px 0 12px;
}

.tab {
  min-height: 40px;
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
}

.tab.active {
  color: #fff;
  background: var(--primary);
}

.grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}

.product-categories::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #24552b;
  background: #e8fee7;
  font-weight: 700;
  white-space: nowrap;
}

.category-pill.active {
  color: #fff;
  background: var(--primary);
}

.product-search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #efe7ff;
}

.product-search input {
  min-width: 0;
  height: 36px;
  border: 0;
  outline: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: transparent;
}

.product-search button {
  min-height: 36px;
  padding: 0 12px;
  border-left: 1px solid #fff;
  color: var(--primary-dark);
  background: transparent;
  font-weight: 800;
}

.profile-card,
.product-card,
.panel,
.admin-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.product-card-enhanced {
  border: 0;
  text-align: left;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.product-card-actions .primary-btn,
.product-card-actions .secondary-btn {
  min-height: 36px;
  padding: 0 8px;
  font-size: 13px;
}

.product-inline-detail {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.product-thumb-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.toast-notice {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  width: min(86vw, 360px);
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(33, 25, 35, .88);
  text-align: center;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.profile-card {
  position: relative;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 78px;
  max-width: 78%;
  padding: 7px 12px 7px 14px;
  border-radius: 0 var(--radius) 0 999px;
  color: #ffd84d;
  background: rgba(38, 38, 42, .62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 8px 18px rgba(0, 0, 0, .18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-card img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1);
  transition: transform .55s ease;
  will-change: transform;
}

.profile-card:hover {
  box-shadow: 0 18px 38px rgba(33, 25, 35, .18);
}

.profile-card:hover img {
  transform: scale(1.045);
}

.profile-card:active {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(33, 25, 35, .22);
}

.product-card img {
  aspect-ratio: 4 / 3;
}

.card-body {
  padding: 10px;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 800;
}

.profile-title {
  color: #F54927;
}

.meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  padding: 3px 5px;
  border-radius: 4px;
  color: var(--primary-dark);
  background: #eafff2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  border: 0;
}

.profile-card .tags {
  flex-wrap: nowrap;
  gap: 4px;
  overflow: hidden;
}

.profile-card .tag {
  flex: 0 1 auto;
  max-width: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
}

.tag-color-1 {
  color: #177245;
  background: #dff8e8;
}

.tag-color-2 {
  color: #8a5b00;
  background: #fff1bd;
}

.tag-color-3 {
  color: #126a9d;
  background: #dff2ff;
}

.tag-color-4 {
  color: #fff;
  background: #4d2a79;
}

.tag-color-5 {
  color: #8a2856;
  background: #ffe2ef;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: auto;
  height: auto;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.status.online {
  color: #15814c;
}

.status.busy {
  color: #a26d00;
}

.status.offline {
  color: #777178;
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 8px 10px 10px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.nav-item {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 6px 2px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
}

.nav-item.active {
  color: var(--primary-dark);
  background: #ffe7f0;
  font-weight: 800;
}

.nav-icon {
  font-size: 18px;
  line-height: 1;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, .36);
  z-index: 50;
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(100%, 480px);
  max-height: 88vh;
  overflow: auto;
  padding: 18px;
  border-radius: 22px 22px 0 0;
  background: #fff;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: #fff;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #ffe7f0;
}

.chip.active {
  color: #fff;
  background: var(--primary);
}

.modal-actions,
.bottom-actions,
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.hero-media {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 76px;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

.thumb-row img {
  width: 76px;
  height: 76px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  object-fit: cover;
}

.thumb-row img.active {
  border-color: var(--primary);
}

.detail-media-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.detail-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-line;
}

.detail-media-list:empty {
  display: none;
}

.detail-media-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-media-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #111;
}

.detail-media-item video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.info-cell {
  padding: 10px 6px;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-cell strong {
  display: block;
  margin-top: 4px;
}

.hidden {
  display: none !important;
}

.message {
  min-height: 22px;
  color: var(--primary-dark);
  font-size: 13px;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  border-radius: 22px;
  background: #ffe7f0;
  box-shadow: var(--shadow);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-slide img,
.banner-slide video {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 18px 18px 16px;
  color: #fff;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.banner-overlay h2 {
  margin: 0;
  font-size: 26px;
}

.banner-overlay p {
  margin: 6px 0 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, .9);
}

.banner-dots {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
}

.banner-dot.active {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

.upload-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff7fb;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.upload-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.upload-item img,
.upload-item video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.upload-item button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .55);
}

.upload-progress {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: #ffe7f0;
}

.upload-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width .2s ease;
}

.tag-select {
  position: relative;
}

.tag-select-menu {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.tag-select.open .tag-select-menu {
  display: grid;
}

.tag-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 6px;
  color: var(--muted);
  background: #f7eef3;
  font-size: 13px;
  font-weight: 700;
}

.tag-option.active {
  color: #fff;
  background: var(--primary);
}

.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(26, 163, 255, 0.7);
  --c-color-2: #2fff9b;
  --c-color-3: rgba(67, 255, 218, 0.82);
  --c-color-4: rgba(26, 232, 255, 0.7);
  --c-shadow: rgba(87, 223, 255, 0.5);
  --c-shadow-inset-top: rgba(52, 223, 255, 0.9);
  --c-shadow-inset-bottom: rgba(215, 250, 255, 0.8);
  --c-radial-inner: #15d2ff;
  --c-radial-outer: #72faff;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  position: relative;
  width: 100%;
  min-height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  outline: none;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(circle, var(--c-radial-inner), var(--c-radial-outer) 80%);
  box-shadow: 0 0 14px var(--c-shadow);
}

.tab.uiverse {
  --duration: 5.4s;
  --c-color-3: rgba(47, 255, 155, 0.72);
}

.recommend-button {
  width: 100%;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 7px;
  border: 2px solid transparent;
  color: #fff;
  background: linear-gradient(140.14deg, #ec540e 15.05%, #d6361f 114.99%) padding-box,
    linear-gradient(142.51deg, #ff9465 8.65%, #af1905 88.82%) border-box;
  text-shadow: 1px 1px 1px #00000040;
  box-shadow: 8px 8px 20px 0 #45090059;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: all .3s;
}

.recommend-button:hover,
.recommend-button.active {
  box-shadow: none;
  opacity: .8;
}

.uiverse:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 3px 12px var(--c-shadow-inset-top), inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  position: relative;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  padding: 11px 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 4;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% { transform: translate(0, 16px) translateZ(0); }
  66% { transform: translate(12px, 64px) translateZ(0); }
}

@keyframes circle-2 {
  33% { transform: translate(80px, -10px) translateZ(0); }
  66% { transform: translate(72px, -48px) translateZ(0); }
}

@keyframes circle-3 {
  33% { transform: translate(20px, 12px) translateZ(0); }
  66% { transform: translate(12px, 4px) translateZ(0); }
}

@keyframes circle-4 {
  33% { transform: translate(76px, -12px) translateZ(0); }
  66% { transform: translate(112px, -8px) translateZ(0); }
}

@keyframes circle-5 {
  33% { transform: translate(84px, 28px) translateZ(0); }
  66% { transform: translate(40px, -32px) translateZ(0); }
}

@keyframes circle-6 {
  33% { transform: translate(28px, -16px) translateZ(0); }
  66% { transform: translate(76px, -56px) translateZ(0); }
}

@keyframes circle-7 {
  33% { transform: translate(8px, 28px) translateZ(0); }
  66% { transform: translate(20px, -60px) translateZ(0); }
}

@keyframes circle-8 {
  33% { transform: translate(32px, -4px) translateZ(0); }
  66% { transform: translate(56px, -20px) translateZ(0); }
}

@keyframes circle-9 {
  33% { transform: translate(20px, -12px) translateZ(0); }
  66% { transform: translate(80px, -8px) translateZ(0); }
}

@keyframes circle-10 {
  33% { transform: translate(68px, 20px) translateZ(0); }
  66% { transform: translate(100px, 28px) translateZ(0); }
}

@keyframes circle-11 {
  33% { transform: translate(4px, 4px) translateZ(0); }
  66% { transform: translate(68px, 20px) translateZ(0); }
}

@keyframes circle-12 {
  33% { transform: translate(56px, 0) translateZ(0); }
  66% { transform: translate(60px, -32px) translateZ(0); }
}

.admin-shell {
  min-height: 100vh;
  padding: 18px;
  background: #f7f3f6;
}

.admin-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.admin-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-nav a.active {
  color: #fff;
  background: var(--primary);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.admin-card {
  padding: 16px;
}

.admin-form-actions,
.pager {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pager {
  justify-content: center;
  margin: 14px 0 0;
}

.pager span {
  color: var(--muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--muted);
}

@media (max-width: 360px) {
  .grid-list,
  .quick-actions,
  .modal-actions,
  .bottom-actions,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
