/* GDPR Banner Link */
#gdpr-banner a {
    color: #FFD700;          /* Gold color for the link */
    text-decoration: none;   /* Remove underline */
    font-weight: bold;       /* Make the text bold */
    border-bottom: 2px solid transparent; /* Subtle bottom border */
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Hover effect */
#gdpr-banner a:hover {
    color: #FF4500;          /* Bright orange on hover */
    border-bottom: 2px solid #FF4500; /* Add underline on hover */
}

/* Focus effect */
#gdpr-banner a:focus {
    outline: none;            /* Remove default focus outline */
    border-bottom: 2px solid #FFD700; /* Focused link with gold underline */
}

.gdpr-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.gdpr-button:hover {
    background-color: #45a049;
}