/* General styles for better readability */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure the content spans the full width of the screen */
.wy-nav-content {
    max-width: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

.rst-content {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .wy-nav-side {
        display: none;
    }

    .wy-nav-content {
        margin-left: 0;
        padding: 10px;
    }

    .rst-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rst-content {
        font-size: 12px;
    }
}