/*-- Use For Custom Styling --*/

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-family: 'Oxanium', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Abstand zwischen Text und Button */
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1; /* Text nimmt den verfügbaren Platz ein */
}

#cookie-banner a {
    color: #6A954F;
    text-decoration: underline;
}

#cookie-banner button {
    padding: 10px 20px;
    background: #6A954F;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#cookie-banner button:hover {
    background: #5a8445;
}

/* Responsives Design für Mobilgeräte */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column; /* Stapelt Text und Button */
        align-items: flex-start; /* Linksbündig im mobilen Format */
        padding: 15px;
    }

    #cookie-banner p {
        margin-bottom: 10px; /* Abstand unter dem Text */
    }

    #cookie-banner button {
        width: 100%; /* Button nimmt die gesamte Breite ein */
        text-align: center;
    }
}