﻿/* Estilos generales del banner */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
}

    #cookie-banner.show {
        display: block;
    }

/* Estilos para los botones */
#accept-cookies,
#cookie-settings {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}

#accept-cookies {
    background-color: #4caf50;
}

#cookie-settings {
    background-color: #007bff;
}

/* Otros estilos */
#cookie-message {
    margin-right: 10px;
}

#cookie-settings:hover,
#accept-cookies:hover {
    opacity: 0.8;
}
