body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

.container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    color: #333;
    margin-bottom: 10px;
}

/* Formularelemente (für immich.php, aber stört index.php nicht) */
label {
    font-weight: 600;
    display: block;
    text-align: left;
    margin-top: 15px;
    margin-left: 5px;
}

input{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Startseite: Bereich für die zwei großen Links */
.button-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Große Buttons auf der Startseite */
.big-button {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.big-button.blue {
    background-color: #007BFF;
}

.big-button.blue:hover {
    background-color: #005ec7;
}

.big-button.green {
    background-color: #28a745;
}

.big-button.green:hover {
    background-color: #1d7f33;
}
