#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    display: none; /* Initially hide it, JS will show it */
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

#consent-banner p {
    margin: 0;
    font-size: 14px;
}

#consent-banner a {
    color: #90caf9;
}

/* Style for the Accept button (primary action) */
#accept-btn {
    background-color: #007bff; 
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 10px; /* Space between buttons */
}

/* Style for the Reject button (secondary action) */
#reject-btn {
    background-color: transparent; /* Transparent background */
    color: white;
    border: 1px solid white; /* White border */
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}