.col-md-9 img {
  max-width: 85%;
  display: inline-block;
  padding: 4px;
  line-height: 1.428571429;
  background-color: var(--bs-secondary-bg-subtle);
  border: 1px solid var(--bs-secondary-border-subtle);
  border-radius: 4px;
  margin: 20px auto 30px auto;
}

/* -------------------------------------------------index.md--------------------------------------------------------------- */
/* ======== CUSTOM LAYOUTS ======== */
.sb-page-content {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1.5rem;
}

.sb-hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e0f2f7 0%, #cce0ff 100%);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sb-hero-text h1 {
  font-size: 2.8em;
  color: #0d47a1;
  border-bottom: none;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.sb-hero-text p {
  font-size: 1.2em;
  color: #2f4f6f;
  line-height: 1.6;
}

.sb-hero-highlight {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #047ff9;
}

.sb-hero-highlight h2 {
  font-size: 1.5em;
  color: #047ff9;
  border-bottom: none;
  margin-top: 0;
}

.sb-hero-highlight p {
  font-size: 1em;
  color: #333;
}

.sb-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.sb-summary-grid-master-data {
  grid-template-columns: 1fr;
}

.sb-card-master-data {
  padding: 3rem;
}

.sb-summary-grid-secondary {
  margin-top: 4rem;
}

.sb-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.sb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #047ff9;
}

.sb-card-label {
  font-size: 0.85em;
  font-weight: 700;
  color: #047ff9;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}

.sb-card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #004080;
  margin-bottom: 0.7em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  /* Space between title and icon */
}

.sb-card p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
  flex-grow: 1;
}

.sb-card-subtext {
  font-size: 0.8em;
  color: #555;
  margin-top: 1em;
  padding-top: 0.8em;
  border-top: 1px solid #eee;
  width: 100%;
}

.sb-card-list {
  list-style: none;
  padding: 0;
  margin-top: 1em;
}

.sb-card-list li {
  background-color: #eef7ff;
  border-left: 3px solid #047ff9;
  margin-bottom: 0.5em;
  padding: 0.6em 1em;
  border-radius: 4px;
  font-size: 0.9em;
  color: #004080;
}

.sb-card-list li strong {
  color: #004080;
}

.sb-card-icon {
  font-size: 0.8em;
  /* Match title font-size for better visual balance */
  color: #047ff9;
}

/* Add specific icons for cards */
.sb-card-icon.overview-icon::before {
  content: "\f00a";
  /* FontAwesome dashboard icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.project-icon::before {
  content: "\f07b";
  /* FontAwesome folder icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.sync-icon::before {
  content: "\f021";
  /* FontAwesome sync icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.alert-icon::before {
  content: "\f0f3";
  /* FontAwesome bell icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.masterdata-icon::before {
  content: "\f0c0";
  /* FontAwesome users icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.insights-icon::before {
  content: "\f022";
  /* FontAwesome book icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.quickstart-icon::before {
  content: "\f0a1";
  /* FontAwesome lightbulb icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-card-icon.journeys-icon::before {
  content: "\f0b1";
  /* FontAwesome user-tie icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.sb-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f9fbfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.sb-section-split {
  display: grid;
  /* grid-template-columns: 1.2fr; */
  gap: 2rem;
  align-items: flex-start;
}

.sb-section-block h2 {
  color: #004080;
  border-bottom: 1px solid #cce0ff;
  padding-bottom: 0.5em;
  margin-top: 0;
}

.sb-section-block h3 {
  color: #0059b3;
  margin-top: 1.5em;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 0.3em;
}

.sb-section-block ul {
  list-style: none;
  padding: 0;
}

.sb-section-block ul li {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23047ff9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 0.8em;
  color: #333;
}

.sb-section-block strong {
  color: #004080;
}

.sb-master-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Changed to 3 explicit columns */
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sb-master-column {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sb-master-column h3 {
  color: #047ff9;
  font-size: 1.2em;
  margin-top: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5em;
}

.sb-master-column ul {
  list-style: none;
  padding: 0;
}

.sb-master-column li {
  margin-bottom: 0.8em;
  font-size: 0.95em;
  color: #444;
  line-height: 1.4;
}

.sb-master-column li strong {
  color: #004080;
}

.sb-section-highlight {
  background-color: #eef7ff;
  border-left: 6px solid #047ff9;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sb-section-highlight h2 {
  color: #047ff9;
  border-bottom: 1px solid #a8d7ff;
  padding-bottom: 0.5em;
  margin-top: 0;
}

.sb-section-highlight ol {
  padding-left: 1.5em;
  color: #333;
}

.sb-section-highlight ol li {
  margin-bottom: 0.8em;
  line-height: 1.6;
  color: #333;
}

.sb-section-highlight p {
  color: #333;
  font-size: 1em;
}

/* --------------------------------------------------------------------------- */

/* ======== GLOBAL STYLES ======== */
body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Centered Content */
.md-content {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1.5rem;
}

/* ======== HEADINGS ======== */
h1 {
  font-size: 2.65em;
  font-weight: 700;
  color: #047ff9;
  border-bottom: 2px solid #cce0ff;
  padding-bottom: 0.3em;
  text-align: center;
}

h2 {
  font-size: 1.8em;
  font-weight: 600;
  color: #004080;
  border-bottom: 1px solid #cce0ff;
  padding-bottom: 0.2em;
  margin-top: 1.2em;
}

h3 {
  font-size: 1.4em;
  font-weight: 500;
  color: #0059b3;
  margin-top: 1em;
}

h4 {
  font-size: 1.2em;
  font-weight: 500;
  color: #0245aa;
}

/* ======== PARAGRAPHS & TEXT ======== */
p {
  margin-bottom: 1.2em;
}

strong {
  color: #1a1a1a;
  font-weight: bold;
}

em {
  color: #444;
  font-style: italic;
}

/* ======== LINKS ======== */
a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* ======== TABLES ======== */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

table th,
table td {
  padding: 0.75em 1em;
  border: 1px solid #ddd;
}

table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* ======== IMAGES ======== */
img {
  max-width: 80%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 1em 0;
}

/* ======== BUTTON STYLING ======== */
.btn {
  display: inline-block;
  background-color: #1a73e8;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin: 0.5em 0;
}

.btn:hover {
  background-color: #0f5bd2;
}

/* ======== NAVIGATION ACTIVE LINK HIGHLIGHT ======== */
.md-nav__link--active {
  font-weight: bold;
  color: #1a73e8 !important;
}

/* ======== SCROLLBAR STYLING ======== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

/* ======== NAVBAR STYLES ======== */
.navbar-nav .nav-link {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
  color: #dceeff !important;
  text-decoration: underline;
}

.navbar-brand {
  font-size: 18px;
  font-weight: 600;
  color: #f1f1f1 !important;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Workflow Timeline - Moved from index.md */
.workflow-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 24px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.workflow-section h2 {
  color: #2d3748;
  font-size: 2.2em;
  margin-top: 0;
  margin-bottom: 1rem;
  border: none;
  text-align: center;
}

.workflow-section>p {
  text-align: center;
  color: #4a5568;
  font-size: 1.1em;
  margin-bottom: 3rem;
}

.workflow-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  align-items: flex-start;
}

.workflow-step::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -25px;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
}

.workflow-step:last-child::before {
  display: none;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5em;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
  z-index: 1;
}

.workflow-step:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.step-content {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.workflow-step:hover .step-content {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
  margin: 0 0 0.8rem 0;
  color: #2d3748;
  font-size: 1.4em;
  border: none;
}

.step-content h3 a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.step-content h3 a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.step-content p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workflow-step {
    flex-direction: column;
    gap: 1rem;
  }

  .workflow-step::before {
    left: 29px;
    top: 70px;
  }
}