* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
}

.status {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #28a745;
}

.api-section {
    margin: 30px 0;
}

h2 {
    color: #555;
    margin-bottom: 15px;
}

code {
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

pre {
    background: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin-top: 15px;
    font-size: 14px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #667eea;
}

.header-logo {
    display: flex;              /* Flexbox aktivieren */
    flex-direction: row;        /* Horizontal: Logo → Text */
    align-items: center;        /* Vertikal zentriert */
    justify-content: center;    /* Horizontal zentriert */
    gap: 16px;                  /* Abstand zwischen Logo und Text */
}

.header-logo img {
    width: 48px;
    height: 48px;
}

.header-logo h1 {
    font-size: 32px;
    margin: 0;
    white-space: nowrap;       /* Text bleibt in einer Zeile */
}
