Version-15.5

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Basic HTML Structure</title>
    <style>
        body {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            padding: 5px;
            overflow-y: auto;
        }

        .section-main {
            flex-direction: column;
            padding: 5px;
            min-height: 1000px !important;
            min-width: 1000px !important;
            background: rgba(125, 225, 25, 0.5) !important;
        }

        .section-title {
            min-height: 50px !important;
            min-width: 1000px !important;
        }

        .div-title {
            font-family: "Roboto", sans-serif;
            font-size: 25px;
            font-weight: bold;
        }

        .div-version {
            font-size: 15px;
            font-weight: bold;
        }

        .section-header {
            min-height: 250px !important;
            min-width: 1000px !important;
        }

        .section-body {
            flex-direction: column;
            padding: 10px 0px 10px 0px;
            min-width: 1000px !important;
        }

        .section-footer {
            min-height: 30px !important;
            min-width: 1000px !important;
        }

        #tableContainer {
            backdrop-filter: blur(15px); /* Frosted glass effect */
            border-radius: 15px; /* Rounded corners */
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.9); /* Shadow effect */
            overflow: hidden; /* Hide overflow for rounded corners */
        }

        table {
            border-collapse: collapse; /* Collapsed borders */
            width: 80%; /* Table width */
            background: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
            font-size: 1em;
        }

        th, td {
            padding: 15px; /* Padding */
            text-align:...