/* Hintergrund */
body {
    background-image: url('forest_mist.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* Weihnachtlicher Font */
}

/* Überschrift */
h1 {
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    font-family: 'Courier New', monospace;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 4px #000000;
}

/* Wunschlisten-Container */
.wish {
    background-color: rgba(255, 255, 255, 0.8); /* Schneehintergrund */
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    width: 70%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

ul {
    list-style-type: none; /* Entfernt Standard-Bullets */
    padding: 0;
}

ul li {
    font-size: 1.2em;
    padding: 10px;
    margin: 5px 0;
    background-color: #f9f9f9; /* Leicht grauer Hintergrund */
    border-left: 4px solid #ff0000; /* Weihnachtsrot */
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

ul li a {
    color: #0066cc; /* Link in weihnachtlichem Blau */
    text-decoration: none;
}

ul li a:hover {
    color: #ff0000; /* Rot beim Hover-Effekt */
    text-decoration: underline;
}

/* Weihnachtssymbole */
ul li:before {
    content: "🎁 "; /* Geschenk-Emoji vor jedem Listenpunkt */
    margin-right: 10px;
}

/* Buttons und Links */
.addwish a, .logout a {
    display: block;
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    width: fit-content;
}
.addwishbox, .login, .back {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5); /* Hintergrundbox für bessere Lesbarkeit */
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}


.addwish a:hover, .logout a:hover {
    background-color: #cc0000;
}

/* Schneecontainer */
.snowflake {
    color: white;
    font-size: 1.5em;
    position: fixed;
    top: -10%; /* Start über dem sichtbaren Bereich */
    z-index: 9999;
    pointer-events: none; /* Keine Interaktion mit der Maus */
    animation: fall 10s linear infinite, drift 5s ease-in-out infinite;
}

.footer {
    clear: both;
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Schneeflocken fallen lassen */
@keyframes fall {
    0% {
        transform: translateY(-10%);
    }
    100% {
        transform: translateY(110%);
    }
}

/* Seitliches Driften */
@keyframes drift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

.navigation {
    text-align: center;
    margin-top: 20px;
}

.navigation a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    color: blue;
    transition: all 0.3s ease-in-out;
}

.navigation a:hover {
    background-color: #cc0000;
    color: white;
}
.wishdetails {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 50%;
}

.wishdetails h2 {
    margin-top: 0;
}

.wishdetails p {
    margin-bottom: 20px;
}

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

.wishdetails a.button:hover {
    background-color: #3e8e41;
}
.editwishbox {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 50%;
}

.editwishbox h2 {
    margin-top: 0;
}

.editwishbox form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editwishbox form input {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

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

.editwishbox form button:hover {
    background-color: #3e8e41;
}




