/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('/background.jpg'); /* Hintergrundbild */
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: rgba(0, 0, 0, 0.4); /* Halbtransparente Box */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px; /* Breitere Box */
    width: 90%; /* Passt die Breite für kleinere Geräte an */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}

.wallet-info, .token-calculator, .price-info {
    margin: 20px 0;
}

.wallet-info p, .price-info p, .price-info ul, .token-calculator p {
    word-wrap: break-word; /* Lange Texte umbrechen */
}

.highlight {
    color: yellow; /* Wallet- und Contract-Adresse in Gelb */
    font-weight: bold; /* Hebt Adressen hervor */
    margin: 10px 0;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* QR-Code Styling */
#qrCodeSection {
    margin-top: 20px;
}

#qrcode {
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 90%; /* Passt die Breite für mobile Geräte an */
    }

    h1 {
        font-size: 20px;
    }

    button {
        width: 100%; /* Button auf volle Breite */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    input[type="number"] {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .container {
        padding: 15px; /* Weniger Padding für kleinere Geräte */
    }
}
