html {
    overflow-y: scroll; /* Always shows the vertical scrollbar */
    background-color: #000;
}

.markdown-body {
    box-sizing: border-box;
    min-width: 200px;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px;
    background-color: #0d1117; /* Dark background for markdown body */
    color: #c9d1d9; /* Lighter text color for readability */
}

.fileLink {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #0366d6; /* Adjusted darker blue for links */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.fileLink:hover {
    background-color: #30363d; /* Darker shade for hover effect */
    color: #c9d1d9; /* Light color for text on hover */
    transition: all 0.3s ease;
}

#niceFont {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
