
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: 60%; /* Reducir el tamaño del texto en un 50% */
}

.cookie-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

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

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

.cookie-banner button#reject-cookies {
    background: #f44336;
}

.cookie-banner button#reject-cookies:hover {
    background: #d32f2f;
}
