<!DOCTYPE html>
<html>
<head>
    <title>ISOLecture Operations</title>
    <style>
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #1a1a2e; color: #eee; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
        .container { text-align: center; }
        h1 { color: #4dabf7; margin-bottom: 2rem; }
        .cards { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
        .card { background: #16213e; padding: 2rem; border-radius: 12px; width: 200px; text-decoration: none; color: #eee; transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(77, 171, 247, 0.3); }
        .card h2 { margin: 0 0 0.5rem 0; font-size: 1.2rem; }
        .card p { margin: 0; color: #888; font-size: 0.9rem; }
        .user { margin-top: 2rem; color: #666; font-size: 0.85rem; }
    </style>
</head>
<body>
    <div class="container">
        <h1>ISOLecture Operations</h1>
        <div class="cards">
            <a href="/services/" class="card">
                <h2>Services</h2>
                <p>Container Management</p>
            </a>
            <a href="/metrics/" class="card">
                <h2>Metrics</h2>
                <p>Performance Dashboard</p>
            </a>
            <a href="/status/" class="card">
                <h2>Status</h2>
                <p>System Monitoring</p>
            </a>
        </div>
        <p class="user">Logged in as: </p>
    </div>
</body>
</html>