/* PDPA Consent Banner */
.pdpa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* A dark background, you can change this */
    color: #f8f9fa; /* A light text color */
    padding: 1rem 0;
    z-index: 1040; /* Make sure it's on top of other content but below modals */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.pdpa-banner .pdpa-text {
    font-size: 0.9rem;
    margin-right: 1.5rem;
}

.pdpa-banner a {
    color: #ffffff; /* White link color */
    text-decoration: underline;
}

.pdpa-banner a:hover {
    color: #dddddd; /* Slightly lighter on hover */
}