html, body {
    height: auto;
    width: auto;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000; /* Default text color */
}

.container {
    display: flex;
    width: 100vh;
    height: 100vh;
}

.left-menu {
    width: 10%;
    background-color: #fff;
    padding: 10px;
}

.main-content {
    flex: auto;
    min-width: 95%;
    /* padding: 10px; */
}

/* Basic Reset */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.main {
    margin: 10px 0px;
    padding: 0;
}

ul.main li {
    position: relative;
    padding-left: 10px; 
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333;
}

ul.main li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0%;
}

/* Optional - Adding an underline effect */
ul.main li:hover {
    text-decoration: underline;
}

/* Optimized for reading content */
.single {
    /* General Styles */
    position: relative;
    font-family: "Georgia", serif;
    line-height: 1.6;
    color: #333;
    max-width: auto;
    margin: 0;
    padding: 20px;
    background-color: #fff;
}

/* Headings */
.single h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #1a1a1a;
}

/* Paragraphs */
.single p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    text-align: justify;
}

/* Unordered Lists */
.single ul {
    margin-left: 1.5em;
    padding-left: 1em;
    list-style-type: none;
}

.single ul li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Ordered Lists */
.single ol {
    margin-left: 1.5em;
    padding-left: 1em;
    list-style-type: decimal;
}

.single ol li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}


nav ul {
    list-style-type: none;
    padding: 5px;
}

nav ul li {
    margin: 5px 0;
}

nav ul li a {
    text-decoration: none;
    color: #f70404;
}

.pagination {
    margin-top: 10px;
}


/* Default Link Style */
a {
    text-decoration: none;
    color: #000000; /* Nice shade of blue */
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; /* Underline effect */
}

/* Visited Link Style */
a:visited {
    color: #879099; /* Subtle grey to indicate visited */
}

/* Hover Link Style */
a:hover {
    color: #0056b3; /* Darker shade of blue */
    border-bottom: 2px solid #0056b3; /* Underline effect */
}

/* Focus Link Style */
a:focus {
    outline: none;
    border-bottom: 2px solid #a90101
}
