#rgpd-gc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    padding: 1em;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#rgpd-gc-banner p {
    margin: 0;
}

#rgpd-gc-banner a {
    color: #005be1;
    text-decoration: underline;
}

#rgpd-gc-banner .rgpd-btn {
    margin-left: 0.5em;
    padding: 0.5em 1em;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    background-color: #e0e0e0;
    color: #000;
    transition: background-color 0.2s ease;
}

#rgpd-gc-banner .rgpd-btn:hover {
    background-color: #ccc;
}

#rgpd-gc-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1em;
    z-index: 10000;
    border-top: 3px solid #333;
    font-family: system-ui, sans-serif;
    font-size: 15px;
}