﻿/* Cookie-Banner-Styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #290f49;
    color: #fff;
    padding: 15px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}
#cookie-banner p {
    margin: 0;
    flex: 1 1 auto;
}
#cookie-banner button {
    margin-left: 10px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
   }
   
#accept-cookies {
    background: #4CAF50;
    color: white;
    background-color: #3498db; /* Blau */      
    }
#decline-cookies {
    background: #f44336;
    color: white;
}
    /* Grundstil für den Button */
    .hover-button {
        
    }

    /* Hover-Effekt */
    .hover-button:hover {
        background-color: #2ecc71; /* Grün */
        color: black;              /* Schwarzer Text */
    }
@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    #cookie-banner button {
        margin: 5px 0;
    }
}

