html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Markdown Content Styling */
.markdown-content h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.markdown-content h2 {
    font-size: 2rem;
 margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.3rem;
}

.markdown-content h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.markdown-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.markdown-content code {
    background-color: #f6f8fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.markdown-content pre {
    background-color: #f6f8fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
  margin-bottom: 1rem;
}

.markdown-content pre code {
    background-color: transparent;
    padding: 0;
}

.markdown-content blockquote {
    border-left: 4px solid #dfe2e5;
    padding-left: 1rem;
    color: #6a737d;
    margin: 1rem 0;
}

.markdown-content ul, .markdown-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.markdown-content li {
    margin-bottom: 0.25rem;
}

.markdown-content a {
    color: #0366d6;
  text-decoration: none;
}

.markdown-content a:hover {
    text-decoration: underline;
}

.markdown-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
}

.markdown-content table th,
.markdown-content table td {
    border: 1px solid #dfe2e5;
    padding: 0.5rem;
}

.markdown-content table th {
 background-color: #f6f8fa;
font-weight: 600;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
}

/* Broken Link Styling */
.markdown-content .broken-link {
 color: #dc3545;
    text-decoration: underline;
 text-decoration-style: dashed;
    cursor: pointer;
    position: relative;
}

.markdown-content .broken-link:hover {
    color: #bd2130;
    text-decoration: underline;
}

/* Toast Notification Styling */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
 z-index: 9999;
}

.custom-toast {
    min-width: 300px;
    background-color: #fff;
    border-left: 4px solid #dc3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.custom-toast .toast-header {
    background-color: #f8d7da;
    color: #721c24;
  border-bottom: 1px solid #f5c6cb;
}

.custom-toast .toast-body {
    padding: 1rem;
}