/* Reset basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout Styling */
body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Container for Main Layout */
.container {
    max-width: 1200px; /* Maximum width for overall layout */
    width: 100%; /* Ensure it takes full width */
    margin: 0 auto; /* Center the container */
    padding: 1.5rem; /* Padding for comfort */
}

/* Main Layout Styling */
.layout {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
}

/* Sidebar Styling */
.sidebar {
    width: 250px; /* Fixed width for sidebar */
    height: 100vh; /* Full height of the viewport */
    background-color: #ffffff; /* White background */
    padding: 1.5rem; /* Increased padding for comfort */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-radius: 8px; /* Slightly rounded corners */
    flex-shrink: 0; /* Prevent it from shrinking */
    overflow-y: auto; /* Enable scrolling if content overflows */
    min-height: 100vh; /* Ensures the sidebar spans the full height of the viewport */
}

/* Sidebar Heading */
.sidebar h2 {
    margin-bottom: 1rem; /* Space below heading */
}

/* Content Area Styling */
.content {
    flex: 1; /* Takes up remaining space */
    padding: 4rem; /* Generous padding */
    max-width: calc(100% - 250px); /* Ensure content doesn't exceed width of the window */
    box-sizing: border-box; /* Include padding in width calculation */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Blog Post Styling */
.post {
    background-color: #ffffff; /* White background for posts */
    padding: 1.5rem; /* Increased padding */
    margin-bottom: 1.5rem; /* Space between blog posts */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border-radius: 8px; /* Rounded corners */
    transition: transform 0.2s; /* Smooth scaling effect */
    overflow: hidden; /* Prevent content overflow */
    justify-content: center;
}

/* Image Styling */
.post img {
    max-width: 100%; /* Ensure images do not exceed the width of the post */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves like a block element */
    margin: 1rem auto; /* Center images and add vertical spacing */
}

/* Post Heading */
.post h2 {
    margin-bottom: 0.5rem; /* Space below post heading */
}


/* Footer Styling */
footer {
    text-align: center; /* Center footer text */
    padding: 1.5rem 0; /* Consistent padding */
    border-top: 2px solid #e0e0e0; /* Match header border */
    background-color: #ffffff; /* White background for footer */
}

/* Hyperlink Styling */
a {
    color: inherit; /* Inherit color */
    text-decoration: none; /* Remove underline */
}

/* Hyperlink Hover Effect */
a:hover {
    text-decoration: none; /* Ensure no underline on hover */
    color: #f68531; /* Keep the color the same on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .layout {
        flex-direction: column; /* Stack sidebar and content on smaller screens */
    }

    .sidebar {
        width: 100%; /* Full width for sidebar on mobile */
        margin-bottom: 1rem; /* Space below sidebar */
    }

    .content {
        max-width: 100%; /* Ensure content is full width on mobile */
    }
}

.options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 60%;
    margin: 0;
    padding: 20px; /* Adjusted padding */
    list-style: none;
    gap: 10px; /* Add spacing between grid items */
}

.option {
    display: flex; /* Flexbox for button alignment */
    align-items: center;
    justify-content: center;
    margin: 5px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    color: #333; /* Ensuring text color is visible */
    font-size: 20px; /* Set the font size here */
}

.option:hover {
    background-color: #333;
    color: #fff; /* Ensure the text color contrasts well on hover */
}


        /* Center content */
        #mp-photo {
            margin-bottom: 15px;
            width: 240px;
            align: center;
        }