
[data-bs-theme="light"] .mwd-main {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(102, 16, 242, 0.18), transparent 40%),
    #f8f9fa;
}

[data-bs-theme="dark"] .mwd-main {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(111, 66, 193, 0.3), transparent 40%),
    #111827;
}

.mwd-main {
  padding: 0.5rem 1rem 1rem 1rem;
}

@media (min-width: 768px) {
  .mwd-main {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  .mwd-main {
    padding: 3rem;
  }
}

.mwd-main-section-main {
  
}

/* Light mode */
:root,
[data-bs-theme="light"] {
  --mwd-main-card-bg: #f8fafc;
  --mwd-sub-card-bg: #eef4ff;

  --mwd-main-card-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.12);
  --mwd-sub-card-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
}

/* Dark mode */
[data-bs-theme="dark"] {
  --mwd-main-card-bg: #18202f;
  --mwd-sub-card-bg: #202b3d;

  --mwd-main-card-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.45);
  --mwd-sub-card-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.35);
}

.mwd-card-main {
  width: 100%;
  background-color: var(--mwd-main-card-bg);
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--mwd-main-card-shadow);
  border-radius: 1rem;
}

.mwd-card-sub {
  width: 100%;
  background-color: var(--mwd-sub-card-bg);
  border: 1px solid var(--bs-border-color-translucent);
  box-shadow: var(--mwd-sub-card-shadow);
  border-radius: 0.875rem;
}

/* FULLSCREEN MODE */

.fullscreen-toggle-btn-container {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
}

.fullscreen-toggle-btn {
  border-radius: 999px;
  padding: 4px 22px;
  font-weight: 900;
}

body.tool-fullscreen-active .fullscreen-toggle-btn-container {
  margin-top: 4.9rem !important;
}

body.tool-fullscreen-active {
  overflow: hidden;
}

body.tool-fullscreen-active .tool-hide-fullscreen {
  display: none !important;
}

body.tool-fullscreen-active .tool-main-fullscreen {
  min-height: 100vh;
  padding: 0;
}

body.tool-fullscreen-active .tool-main-fullscreen > .container {
  max-width: 100%;
  padding: 0;
}

body.tool-fullscreen-active .tool-shell {
  min-height: 100vh;
  border-radius: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}

body.tool-fullscreen-active .tool-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 48px);
}

body.tool-fullscreen-active .tool-title {
  font-size: clamp(2rem, 4vw, 4rem);
}

body.tool-fullscreen-active .tool-subtitle {
  margin-bottom: 16px;
}

body.tool-fullscreen-active .quote-card {
  flex: 1;
  min-height: 0;
  margin-top: 24px;
}

body.tool-fullscreen-active .quote-card h2 {
  font-size: clamp(2.4rem, 6vw, 6.5rem);
}

@media (max-width: 767.98px) {
  .quote-card {
    min-height: 360px;
  }

  body.tool-fullscreen-active .tool-content {
    padding: 20px;
  }

  body.tool-fullscreen-active .quote-card h2 {
    font-size: clamp(2rem, 11vw, 4rem);
  }
}
