.CodeRay {
    background-color: #333;          /* Dark gray background */
    color: #f5f5f5;                  /* Light text color */
    border: 1px solid #444;          /* Slightly lighter border for contrast */
    border-radius: 8px;              /* Rounded corners */
    padding: 10px;                   /* Padding for space inside */
    overflow-x: auto;                /* Enable horizontal scrolling */
    font-family: monospace;          /* Use a monospace font */
}

.line-numbers {
    color: #f5f5f5;                /* White text color for line numbers */
    padding-right: 10px;           /* Space on the right side of the line numbers */
    width: 30px;                   /* Fixed width to align with code block */
}

.line-numbers a {
    color: #f5f5f5;                  /* White text color for links inside line numbers */
    text-decoration: none;            /* Remove underline from links */
}

.line-numbers a:hover {
    text-decoration: underline;       /* Optional: underline on hover for accessibility */
}
