body {
    margin: 0;
    padding-bottom: 80px; /* Espacio para el banner */
    font-family: sans-serif;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box; /* Incluye padding y border en el ancho */
}
.cookie-banner p {
    margin: 0;
    margin-right: 20px;
    flex-grow: 1; /* Permite que el texto ocupe el espacio disponible */
}
.cookie-banner a {
    color: #a0d4ff;
    text-decoration: underline;
}
.cookie-banner button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.cookie-banner button:hover {
    background-color: #0056b3;
}