/* style.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1; /* El texto ocupa el espacio disponible */
}

.cookie-banner a {
    color: #90caf9;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 5px;
}

.cookie-banner button:hover {
    background-color: #45a049;
}

/*Estilo responsivo ancho menor de 750px*/

@media screen and (max-width : 750px){
    .cookie-banner {
        padding: 10px 15px;
    }

    .cookie-banner button {
        padding: 5px 10px;
        margin-left: 10px;
        border-radius: 5px;
    }
    
    .cookie-banner p {
        font-size: 10px;
        flex-grow: 2; /* El texto ocupa el espacio disponible */
    }
    
}