<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <title>GDA-Server</title>
    <style>
        body {
            min-height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #f7fafc;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        h1 {
            margin-top: 40px;
            margin-bottom: 32px;
            font-size: 2.5em;
            color: #222;
            letter-spacing: 2px;
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 0 #fff, 4px 4px 8px #e3e3e3;
        }

        .links-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px;
            background: #fff;
            padding: 36px 48px;
            border-radius: 18px;
            box-shadow: 0 6px 32px rgba(33, 150, 243, 0.08);
            min-width: 320px;
        }

        .link-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 8px 0;
            border-radius: 10px;
            font-size: 1.18em;
            color: #1976d2;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.18s, box-shadow 0.18s;
        }

        .link-item:hover {
            background: #f0f6ff;
            box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
            text-decoration: underline;
        }

        .icon-wrapper {
            width: 38px;
            height: 38px;
            background: #f7fafc;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 4px rgba(33, 150, 243, 0.06);
        }

        .icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            display: block;
        }

        @media (max-width: 600px) {
            .links-container {
                padding: 18px 8px;
                min-width: unset;
            }

            h1 {
                font-size: 1.5em;
            }
        }
    </style>
    <link href="/gda-server/icons/favicon.ico" rel="icon" type="image/x-icon">
</head>
<body>
<h1>GDA-Server</h1>
<div class="links-container">
    <a class="link-item" href="/gda-server/rs">
                                <span class="icon-wrapper">
                                    <img class="icon" src="/gda-server/icons/swagger-api-icon.svg" alt="Swagger Icon"
                                         title="Swagger-UI">
                                </span>
        Swagger-UI
    </a>
    <a class="link-item" href="/gda-server/supporttool-app">
                                <span class="icon-wrapper">
                                    <img class="icon" src="/gda-server/icons/Gerda_GDA.png"
                                         alt="Supporttool Icon"
                                         title="Supporttool-App">
                                </span>
        Supporttool-App
    </a>
</div>
</body>
</html>