#lcaa-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 13px;
    animation: lcaa-slide-up 0.4s ease-out;
}

#lcaa-cookie-banner p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.4;
}

#lcaa-cookie-banner a {
    color: #0073aa;
    text-decoration: underline;
}

#lcaa-cookie-banner button {
    margin: 4px 5px 0 0;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

#lcaa-cookie-banner button:first-of-type {
    background-color: #2c7;
    color: white;
}

#lcaa-cookie-banner button:last-of-type {
    background-color: #aaa;
    color: white;
}

@keyframes lcaa-slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
