<!DOCTYPE html>
<html lang="en" class="dark">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>

        <link rel="stylesheet" href="Public/Main.css" />
        <style>
            body::-webkit-scrollbar {width: 11px;}
            body {scrollbar-width: thin; scrollbar-color: {{ usercolor }} #1f2937;}
            body::-webkit-scrollbar-track {background: #1f2937;}
            body::-webkit-scrollbar-thumb {background-color: {{ usercolor }}; border-radius: 6px; border: 3px solid #1f2937;}
        </style>
    </head>
    <body class="bg-gray-200 dark:bg-gray-700">
        <div class="container mx-auto text-center px-8 sm:px-0">
            <div class="block">
                <div class="p-2 w-auto inline-block rounded-md mt-32 px-4 text-gray-800 dark:text-white bg-gray-300 dark:bg-gray-800">
                    {% if searching %}
                        No file found with the name of <span class="text-{{ usernamecolor }}-500">{{ searchingFor }}</span>.
                    {% else %}
                        No file name was provided.
                    {% endif %}
                </div>
            </div>
        </div>
    </body>
</html>