.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 15px;
    border-top: 1px solid #dee2e6;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close-cookie {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-banner.show {
    transform: translateY(0);
}