/* docs/css/extra.css */

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap; /* This is the key line */
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2') format('woff2');
}


/* Fixed WhatsApp Share Button */
.whatsapp-share {
  position: fixed;
  top: 35%;
  right: 0px;
  background-color: #25D366;
  color: white;
  font-size: 1.5rem;
  padding: 0.3rem 0.5rem;
  border-top-left-radius: 8px;
  /* soften left side */
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  /* square right side */
  border-bottom-right-radius: 0;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media screen and (min-width: 76.25em) {
  .whatsapp-share {
    display: none;
  }
}

/* Disable margins around mkdocs content */
.md-content__inner {
    margin: 0; 
    padding: 0;
}

.md-main__inner {
    margin: 0;
}

.md-content__inner:before {
    height: 0;
}

/* Hide sidebar */
.md-sidebar--secondary {
    display: none !important;
}

/* This was making the footer too thick */
.md-social {
    padding: 0;
}

.md-copyright {
  display: none
}