body {
    font-family: 'Verdana', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    padding-top: 50px;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

    .navbar a {
        float: left;
        display: block;
        color: #fff;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
    }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

.header {
    height: 300px;
    color: #333;
    text-align: center;
    padding-top: 100px;
    font-size: 50px;
    position: relative;
    background-color: #e2e2e2;
}

.header-text {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #fff;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .content h2 {
        font-size: 30px;
        color: #333;
        border-bottom: 2px solid #333;
        padding-bottom: 10px;
    }

    .content ul {
        list-style-type: none;
        padding: 0;
    }

    .content li {
        background: #f9f9f9;
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

        .content li a {
            text-decoration: none;
            color: #333;
        }

            .content li a:hover {
                text-decoration: underline;
            }

.header-search-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: width 0.4s ease-in-out, padding 0.4s ease-in-out;
    opacity: 1;
}

    #search-input:focus {
        border-color: #808080; /* Change this to your desired color */
        outline: none; /* Remove the default outline */
    }

#search-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

    #search-btn:hover {
        background-color: black;
    }

/* Style for ordered list */
.content ol {
    list-style: none;
    counter-reset: list-counter;
    padding: 0;
}

    .content ol li {
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        position: relative;
        counter-increment: list-counter;
        display: flex;
        align-items: center;
    }

        .content ol li::before {
            content: counter(list-counter) ".";
            color: black;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }
