
.kruemel-download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.kruemel-download-box {
    width: 300px;
    padding: 15px;
    background: #1e1e1e;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    border: 2px solid white; /* Weiße Umrandung */
    box-shadow: 4px 4px 10px rgba(255, 255, 255, 0.2); /* Leichter Schatten */
}

.kruemel-download-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.kruemel-download-button {
    display: inline-block;
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.kruemel-download-button:hover {
    background: #005f8d;
}

/* Responsive Fix: Bei kleinen Bildschirmen Box unter den Text setzen */
@media (max-width: 1024px) {
    .kruemel-download-container {
        flex-direction: column;
        align-items: center;
    }

    .kruemel-download-box {
        width: 100%;
    }
}
