/* Globale Stile & Mobile-First Defaults */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8; /* Heller Hintergrund wie in den Tools */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

h1 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 600;
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-list li {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tool-list a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.2rem;
    display: block;
    padding: 20px;
    font-weight: 600;
}

.tool-list a:hover {
    color: #0056b3;
}