/* style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #0056b3;
}

.action-buttons {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button[type="submit"] {
    width: 100%;
    background: #28a745;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

form button[type="submit"]:hover {
    background: #218838;
}

.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.success {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.setup-details {
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.setup-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #e2e6ea;
}
.setup-details p:last-child {
    border-bottom: none;
}

.setup-details code {
    background-color: #f0f0f0;
    padding: 3px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 1.1em;
    flex-grow: 1; /* Nimmt den verfügbaren Platz ein */
    margin-right: 10px;
    word-break: break-all; /* Lange Strings brechen */
}

.setup-details button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.setup-details button:hover {
    background-color: #5a6268;
}