:root {
  --md-primary-fg-color:        #4E7CF7;
  --md-primary-fg-color--light: #4E7CF7;
  --md-primary-fg-color--dark:  #4E7CF7;
}

.md-typeset h1 {
  color: var(--md-typeset-color);
}

body {
  font-family: 'Open Sans', sans-serif; 
}

/* Grid layout with a gap between items */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

h1.md-header__title {
  color: red !important; /* Change to any color */
}

/* Card styling */
.cards {
  background-color: #fff; /* Change this to match your company's card background color */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* A subtle shadow to give depth */
  overflow: hidden; /* Ensures nothing spills out of the card */
  transition: transform 0.3s ease-in-out; /* Smooth scaling transition */
}

/* Card hover effect 
.cards:hover {
  transform: scale(1.05); Scales the card up slightly 
}*/

/* Card content styling */
.cards .content {
  padding: 20px;
  font-family: 'Open Sans', sans-serif; /* Change 'Open Sans' to your company's primary font */
}

.container {
  width: 100%; /* Adjust width as needed */
}

.first-div, .second-div {
  /* border: 1px solid #ccc; /* Just for visualization */ */
  padding: 10px;
  overflow: auto;
}

/* Print button */
.print-btn {
  background-color: #4E7CF7;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}

/* additional print settings */
@media print {
  .print-header {
      display: block;
      text-align: left;
      font-size: 14pt;
      font-weight: bold;
      /* margin-bottom: 20px; */
      color: #01050f; /* Set the font color */
  }

  /* Hide the print button when printing */
  .print-btn {
      display: none;
  }

  /* Other print styles */
  .print-only {
      display: block;
  }
}

@media screen {
  .print-header {
      display: none;
  }

  .print-only {
      display: none;
  }
}

:root {
  --base-border-radius: 0.5rem;
}

/* Change font family of filename present on top of code block. */
.highlight span.filename {
  border-bottom: none;
  border-radius: var(--base-border-radius);
  display: inline;
  font-family: var(--md-code-font-family);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 5px;
  text-align: center;
}
.highlight span.filename + pre > code {
  border-radius: var(--base-border-radius);
  border-top-left-radius: 0;
}
.md-typeset pre > code {
  border-radius: var(--base-border-radius);
}

/* Grid Cards */
.md-typeset .grid.cards > ul > li {
  border-radius: var(--base-border-radius);
}
.md-typeset .grid.cards > ul > li:hover {
  box-shadow: 0 0 0.2rem #ffffff40;
}

/* Markdown Button */
.md-typeset .md-button {
  border-radius: var(--base-border-radius);
}

/* Critic, Mark */
ins.critic,
del.critic {
  text-decoration: none;
}

.md-typeset .critic,
.md-typeset mark {
  border-radius: 0.2rem;
  padding: 0 0.2rem;
}

.md-typeset mark {
  box-shadow: 0 0 0 0.1rem var(--md-typeset-mark-color);
}

.md-typeset ins.critic {
  box-shadow: 0 0 0 0.1rem var(--md-typeset-ins-color);
}

.md-typeset del.critic {
  box-shadow: 0 0 0 0.1rem var(--md-typeset-del-color);
}

/* Forms */
.md-search__form {
  border-radius: var(--base-border-radius);
}

[data-md-toggle="search"]:checked ~ .md-header .md-search__form {
  border-top-right-radius: var(--base-border-radius);
  border-top-left-radius: var(--base-border-radius);
}

[dir="ltr"] .md-search__output {
  border-bottom-right-radius: var(--base-border-radius);
  border-bottom-left-radius: var(--base-border-radius);
}

/* Blog - index.md */
.md-post--excerpt {
  background-color: var(--md-accent-fg-color--transparent);
  box-shadow: 0 0 0 1rem var(--md-accent-fg-color--transparent);
  border-radius: var(--base-border-radius);
}

/* Table */
.md-typeset table:not([class]) {
  border-radius: var(--base-border-radius);
}