﻿.td_Merg {
    background-color: yellow;
    font-weight: bold;
    text-decoration: underline;
    font-style: italic;
    font-size: 15px;
}

@media only screen and (min-width: 760px), (max-device-width: 768px) and (min-device-width: 1024px) {
    .txt_L {
        text-align: left;
    }

    .txt_R {
        text-align: right;
    }

    .txt_C {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    table td:not(.txttitle table td) {
        width: 100% !important;
        display: inline-block;
    }
}


/* General h3 Styling */
h3 {
    font-size: 1.5rem; /* Adjust size for readability */
    font-weight: 600; /* Semi-bold for emphasis */
    color: #2c3e50; /* Dark shade for visibility */
    margin-top: 1em; /* Space before the heading */
    margin-bottom: 0.5em; /* Space after the heading */
    line-height: 1.4; /* Proper line spacing for multiline headings */
    border-left: 4px solid #004aad; /* Decorative left border */
    padding-left: 0.5em; /* Space between text and border */
}

    /* Hover Effect */
    h3:hover {
        color: #2980b9; /* Slightly lighter blue on hover */
        cursor: pointer; /* Pointer cursor to indicate interactivity */
    }

/* Styling for h3 Inside .Inner_page_ */
.Inner_page_ h3 {
    font-size: 1.36rem;
    color: #34495e;
    text-transform: uppercase;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h3 {
        font-size: 1.3rem; /* Reduce size for smaller screens */
    }

    .Inner_page_ h3 {
        font-size: 1.4rem; /* Adjust size for Inner_page_ headings */
    }
}


/* General Reset */
.Inner_page_ ul, .Inner_page_ ol {
    margin: 0 0 1em 1.5em; /* Space before and after lists, with indentation */
    padding: 0; /* Remove default padding */
    list-style-position: outside; /* Ensure bullet/number is outside */
    line-height: 1.6; /* Adjust line spacing */
}

    /* Unordered List Items */
    .Inner_page_ ul li {
        margin-bottom: 0.5em; /* Space between list items */
        font-size: 1rem; /* Set font size */
        color: #333; /* Set text color */
        line-height: 1.5; /* Adjust line spacing */
    }

    /* Ordered List Items */
    .Inner_page_ ol li {
        margin-bottom: 0.5em; /* Space between list items */
        font-size: 1rem; /* Set font size */
        color: #333; /* Set text color */
        line-height: 1.5; /* Adjust line spacing */
        list-style-type: decimal; /* Ensure numbers are displayed */
    }

    /* Nested Lists */
    .Inner_page_ ul ul, .Inner_page_ ul ol, .Inner_page_ ol ul, .Inner_page_ ol ol {
        margin: 0.5em 0 0.5em 1.5em; /* Add additional indentation for nested lists */
        list-style-type: disc; /* For unordered nested lists */
    }

    /* Bolded List Numbers */
    .Inner_page_ ul li > b, .Inner_page_ ol li > b {
        font-weight: 600; /* Emphasize bold numbers */
        color: #444; /* Slightly darker shade */
    }

    /* Hover Effect for List Items */
    .Inner_page_ ul li:hover, .Inner_page_ ol li:hover {
        background-color: #f9f9f9; /* Light gray background on hover */
        cursor: pointer; /* Indicate clickable element */
    }

    /* Additional Spacing for List Paragraphs */
    .Inner_page_ ul li p, .Inner_page_ ol li p {
        margin: 0.5em 0; /* Space around inline paragraphs in lists */
    }



    .Inner_page_ ul li, .Inner_page_ ol li {
        line-height: 1.8; /* Increase readability */
    }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .Inner_page_ ul, .Inner_page_ ol {
        margin-left: 1em; /* Reduce indentation on smaller screens */
    }

        .Inner_page_ ul li, .Inner_page_ ol li {
            font-size: 0.9rem; /* Reduce font size for readability */
        }
}
