/* Headings */
.entry h1,
.entry h2,
.entry h3,
.entry h4 {
}

.entry h1 {
}

.entry h2 {
}

.entry h3 {
}

.entry h4 {
}

/* Paragraphs */
.entry p {
}

/* Lists */
.entry ul,
.entry ol {
}

.entry ul li,
.entry ol li {
}

/* Blockquote */
.entry blockquote {
    margin: 1.5rem 0;
    padding: 0.5rem 1rem;
    background-color: #f9f9f9;
    border-left: 5px solid #ccc;
    font-style: italic;
}

.entry blockquote p {
    margin: 0;
}

/* Tables */
.entry table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    background-color: #fff;
}

.entry table th,
.entry table td {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.entry table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

/* Code */
.entry pre,
.entry code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.entry pre {
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.entry code {
    font-size: 0.875rem;
}

/* Horizontal Rule */
.entry hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

/* Links */
.entry a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Forms */
.entry form {
    margin-top: 1.5rem;
}

.entry form label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.entry form input[type="email"],
.entry form input[type="submit"] {
    margin-bottom: 1rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.entry form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.entry form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Additional Bootstrap Utility Overrides */
.entry .img-fluid {
    max-width: 100%;
    height: auto;
}

.entry .table {
    margin-bottom: 1.5rem;
}

.entry .table th,
.entry .table td {
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
}
#toc {
    position: relative; /* Default state */
    max-height: calc(100vh - 20px); /* Prevent overflow */
    overflow-y: auto;
    padding-right: 10px;
    transition: top 0.3s ease;
}

