/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Centered Container with Responsive Width */
.container {
    width: 80%;
    min-width: 80vw;  /* Ensures at least 80% of the viewport width */
    max-width: 800px; /* Prevents it from becoming too wide */
    margin: 30px auto;
    padding: 30px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Center the Title */
h1 {
    color: #007bff;
    font-size: 28px;
    text-align: center;
}

/* Content - Left Align */
.content {
    text-align: left; /* Ensures readable left-aligned content */
    line-height: 1.6;
}

/* Button Styling */
.button-container {
    text-align: center; /* Center the button */
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0056b3;
}

/* Code Block Styling */
pre {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 5px;
    overflow-x: auto;
}

code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .container {
        width: 90%; /* Allow more space on smaller screens */
        min-width: 90vw;
    }
}

.content table {
    width: 100%;
    border-collapse: collapse;
}

.content table,
.content th,
.content td {
    border: 1px solid #8d8787;
}

.content th,
.content td {
    padding: 10px;
    text-align: left;
}

.content th {
    background-color: #f2f2f2;
}