﻿
/* Add this CSS to override the anchor's text color */
.card.bg-dark.text-white,
.card.bg-dark.text-white * {
    color: white !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cookie-banner {
    position: relative;
    z-index: 1001; /* Above the overlay */
}

.icon-large {
    font-size: 1.5em;
    color: #bbbbbb;
}

.custom-title {
    position: absolute; /* Ensures the title is positioned over the image */
    color: red; /* Red font color */
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff; /* White border effect */
    font-size: 2rem; /* Adjust as needed */
    font-weight: bold; /* Make the font bold */
    top: 50%; /* Center the text vertically */
    left: 50%; /* Center the text horizontally */
    transform: translate(-50%, -50%); /* Perfectly centers the text */
    z-index: 10; /* Ensure the text is above the image */
}
