/* ئۇيغۇر تىبابەت — Traditional Uyghur Medicine Theme */

:root {
  --green-dark: #2d5a3d;
  --green-mid: #4a7c59;
  --green-light: #7aab8a;
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d4;
  --pomegranate: #8b2635;
  --brown: #5c4033;
  --text: #2c2416;
  --text-muted: #6b5d4f;
  --white: #ffffff;
  --shadow: rgba(45, 90, 61, 0.12);
  --radius: 12px;
  --font-heading: 'Amiri', 'Noto Naskh Arabic', serif;
  --font-body: 'Noto Sans Arabic', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  direction: rtl;
  line-height: 1.8;
  min-height: 100vh;
}

/* Geometric pattern overlay */
.pattern-bg {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 25% 25%, var(--green-light) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold-light) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Header & Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero.png') center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 90, 61, 0.92) 0%,
    rgba(45, 90, 61, 0.5) 50%,
    rgba(45, 90, 61, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: var(--white);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 640px;
  opacity: 0.95;
  line-height: 1.9;
}

.hero-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Main Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.5rem auto 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

/* ── Content Cards ── */
.content-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
}

.content-box.placeholder {
  border: 2px dashed var(--green-light);
  background: linear-gradient(135deg, var(--white) 0%, #f9f7f2 100%);
}

.placeholder-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(74, 124, 89, 0.08);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: var(--green-mid);
  font-size: 0.95rem;
}

.placeholder-notice span {
  font-size: 1.25rem;
}

.content-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}

.content-text h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}

.content-text p {
  margin-bottom: 1rem;
}

/* ── Recipe Cards ── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow);
}

.recipe-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.recipe-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}

.recipe-card.title-only {
  display: flex;
  flex-direction: column;
}

.recipe-card.title-only h3 {
  flex: 1;
  margin-bottom: 0.5rem;
}

.recipe-card.title-only .read-more {
  margin-top: auto;
}

.recipe-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.recipe-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.65rem;
  background: var(--cream);
  color: var(--green-mid);
  border-radius: 6px;
  font-size: 0.8rem;
}

/* ── Books ── */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.book-card {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.book-card:hover {
  transform: scale(1.02);
}

.book-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.book-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}

.book-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.book-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  position: relative;
}

.book-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.8rem;
  position: relative;
}

/* ── Apps ── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.app-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s;
}

.app-card:hover {
  border-color: var(--green-light);
}

.app-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.app-info h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.app-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.app-link:hover {
  color: var(--gold);
}

/* ── Feedback Form ── */
.feedback-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-light);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8861f);
  color: var(--green-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(74, 124, 89, 0.1);
  border-radius: var(--radius);
  color: var(--green-dark);
}

.form-success.show {
  display: block;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #0088cc, #006699);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
}

.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--cream);
  color: var(--green-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  word-break: break-all;
}

.contact-link:hover {
  background: var(--gold-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--green-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 400px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 20px var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }
}

.numbered-item {
  padding-right: 0.5rem;
  border-right: 3px solid var(--gold);
  margin-bottom: 1rem;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.source-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.source-note a {
  color: var(--green-mid);
}

.empty-msg {
  text-align: center;
  grid-column: 1 / -1;
  color: var(--text-muted);
  padding: 2rem;
}

.book-grid a.book-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.book-grid a.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.book-author {
  font-size: 0.9rem;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}

.book-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
}

.content-text h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.35rem;
}

.content-text h3:first-child {
  margin-top: 0;
}

/* ── Home enhanced typography ── */
.home-intro {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 2;
  border-right: 4px solid var(--gold);
}

.content-text .section-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}

.home-quote {
  background: var(--cream-dark);
  border-right: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--green-dark);
}

.content-divider {
  border: none;
  border-top: 1px dashed var(--gold-light);
  margin: 2rem 0;
}

.element-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.element-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}

.element-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.element-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.element-card p {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.numbered-list .numbered-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  border-right: none;
}

.numbered-list .num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.numbered-list .numbered-item p {
  margin: 0;
  flex: 1;
}

/* ── Category browse ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  width: 100%;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--green-light);
}

.cat-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.cat-card h3 {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cat-count {
  display: inline-block;
  background: var(--cream);
  color: var(--green-mid);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.back-btn {
  background: var(--cream-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--green-dark);
  font-weight: 600;
  transition: background 0.2s;
}

.back-btn:hover {
  background: var(--gold-light);
}

.list-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  flex: 1;
  font-size: 1.2rem;
}

.browse-search {
  min-width: 200px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  background: var(--white);
}

.load-more-btn {
  display: block;
  margin: 2rem auto 0;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.65rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}

.clickable {
  cursor: pointer;
}

.read-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more.light {
  color: var(--gold-light);
}

.book-card.clickable {
  text-decoration: none;
  color: inherit;
  display: block;
}

.book-card .book-author {
  color: var(--gold-light);
}

/* ── Content modal ── */
.content-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 36, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.content-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--cream-dark);
}

#modal-title {
  font-family: var(--font-heading);
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  padding-left: 2.5rem;
}

.modal-meta {
  color: var(--green-mid);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
}

.modal-body {
  line-height: 2;
  color: var(--text);
}

.modal-body p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 320px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .content-box {
    padding: 1.25rem;
  }

  .modal-inner {
    padding: 1.5rem;
  }

  .list-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

