 .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #333;
        color: #fff;
        padding: 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        display: none; /* Se oculta por defecto */
        font-family: Arial, sans-serif;
    }
    .cookie-banner-content {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cookie-banner p {
        margin: 0;
        padding-right: 20px;
        line-height: 1.5;
    }
    .cookie-buttons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    .cookie-buttons button {
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s;
    }
    #accept-cookies {
        background-color: #4CAF50;
        color: white;
    }
    #accept-cookies:hover {
        background-color: #45a049;
    }
    #decline-cookies {
        background-color: #f44336;
        color: white;
    }
    #decline-cookies:hover {
        background-color: #da190b;
    }