
/* .custom-button {
    padding: 12px 24px;
    background: linear-gradient(45deg, #f6d365, #fda085);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.custom-button:hover {
    background: linear-gradient(45deg, #fda085, #f6d365);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.custom-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.custom-button:focus {
    outline: none;
    box-shadow: 0 0 8px #f6d365;
}

.custom-button:disabled {
    background: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
} */


.button-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.custom-button {
    padding: 12px 24px;
    background: linear-gradient(45deg, #f6d365, #fda085); /* Yellow to Orange */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.custom-button:hover {
   background: linear-gradient(45deg, #fda085, #f6d365);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.custom-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

}

.custom-button:focus {
   outline: none;
    box-shadow: 0 0 8px #f6d365;
}

.custom-button:disabled {
      background: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

/* body, html {
    direction: rtl;
    text-align: right;
}

.md-nav__title, .md-nav__link, .md-footer__link {
    text-align: right;
}

.md-header {
    text-align: right;
}

.md-main__inner {
    text-align: right;
}

h1, h2, h3, h4, h5, h6, p, li, a {
    direction: rtl;
    text-align: right;
} */

code, pre {
    direction: ltr;
    text-align: left;
}
code, pre {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-family: Consolas, Monaco, "Courier New", monospace;
    padding: 10px;
    border-radius: 5px;
}

pre code {
    display: block;
    padding: 1em;
    background: #1e1e1e;
    color: #dcdcdc;
}

pre code:before {
    content: "terminal";
    display: block;
    margin-bottom: 5px;
    color: #608b4e;
    font-weight: bold;
}
/* Make the header logo larger */
.md-header__button.md-logo img {
  max-height: 60px;  /* default is around 30px — adjust as needed */
  height: auto;
}

