/* General styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container for the file content */
#txtContent {
    font-family: 'Courier New', Courier, monospace;
    background-color: #fff;
    padding: 20px;
    margin-top: 30px;
    width: 80%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
    overflow-y: auto;
    max-height: 70vh;
    border: 1px solid #ddd;
}

/* Links style */
a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
}

a:hover {
    text-decoration: underline;
}

/* Page header styling */
h2 {
    font-size: 24px;
    color: #333;
    margin-top: 50px;
}

/* Prevent text selection and interaction */
#txtContent {
    user-select: none;
}

/* Mobile responsiveness */
@media screen and (max-width: 600px) {
    #txtContent {
        width: 95%;
        font-size: 16px;
    }
}
