.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    box-sizing:border-box;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    margin:0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index:100;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #f8b400;
    text-decoration: underline;
}

.cookie-banner button {
    background: #f8b400;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    max-width: 150px;
}

.cookie-banner button:hover {
    opacity: 0.8;
}

/* Stiluri pentru tablete și ecrane mai mari */
@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: center;
        padding: 10px;
    }

    .cookie-banner p {
        font-size: 16px;
    }

    .cookie-banner button {
        width: auto;
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Stiluri pentru desktop */
@media (min-width: 1024px) {
    .cookie-banner {
        gap: 20px;
    }

    .cookie-banner p {
        font-size: 18px;
    }

    .cookie-banner button {
        font-size: 16px;
    }
}