/* GDPR Notice Styles */
.gdpr-notice {
    font-family: inherit; /* Inherit site font */
    transition: opacity 0.3s ease-in-out;
}

/* Ensure it is above other WP elements like admin bar or chat widgets */
.z-3 {
    z-index: 1050 !important; /* Bootstrap modal level */
}

/* Smooth collapse animation override if needed */
.collapse {
    transition: height 0.3s ease;
}

/* Responsive tweaks for mobile */
@media (max-width: 576px) {
    .gdpr-notice {
        width: 90%; /* Take up more space on mobile */
        left: 5%;
        right: 5%;
        bottom: 20px;
    }
}