
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}
a{
    text-decoration: none;
}
/* Top Navigation */
.navbar-custom {
    background-color: #0d3e62;
    color: #FFFFFF;
  }
.navbar-custom a,
.navbar-custom i,
.navbar-custom span {
    color: white !important;
}
.navbar-custom .btn-outline-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}
.navbar-brand {
    font-weight: bold;
}
/*  High Contrast Mode */
.high-contrast {
    background-color: black !important;
    color: yellow !important;
}
.high-contrast a {
    color: yellow !important;
}
.high-contrast button, 
.high-contrast .btn {
    background-color: yellow !important;
    color: black !important;
    border: 1px solid yellow;
}
.high-contrast .navbar,
.high-contrast .footer {
    background-color: black !important;
}
.high-contrast .card {
    background-color: black !important;
    border: 2px solid yellow !important;
}
.high-contrast .card h5,
.high-contrast .card p {
    color: yellow !important;
}
.high-contrast .navbar-dark .navbar-nav .nav-link {
    color: yellow !important;
}
.high-contrast .login-btn {
    background-color: yellow !important;
    color: black !important;
    border: 2px solid black !important;
}

.high-contrast .login-btn:hover {
    background-color: black !important;
    color: yellow !important;
    border: 2px solid yellow !important;
}

/* Fix dropdown menus */
.high-contrast .dropdown-menu {
    background-color: black !important;
    border: 1px solid yellow !important;
}

.high-contrast .dropdown-item {
    color: yellow !important;
}

.high-contrast .dropdown-item:hover {
    background-color: yellow !important;
    color: black !important;
}
.high-contrast .table {
    background-color: black !important;
    color: yellow !important;
}

.high-contrast .table th {
    background-color: yellow !important;
    color: black !important;
}

.high-contrast .table td {
    border-color: yellow !important;
}

.high-contrast .btn {
    background-color: yellow !important;
    color: black !important;
    border: 1px solid black !important;
}

.high-contrast .badge {
    background-color: yellow !important;
    color: black !important;
}
.contrast-active i {
    color: black !important;
}
.consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.btn-lg {
    font-size: 1rem;
    padding: 10px 20px;
}

.hero-section {
    background: linear-gradient(to right, #007bff, #6610f2);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.high-contrast .accordion-button {
    background-color: black !important;
    color: yellow !important;
    border: 1px solid yellow !important;
}

.high-contrast .accordion-button:not(.collapsed) {
    background-color: yellow !important;
    color: black !important;
}

.high-contrast .accordion-body {
    background-color: black !important;
    color: yellow !important;
    border: 1px solid yellow;
}

.high-contrast .form-check-input {
    background-color: yellow !important;
    border: 2px solid black !important;
}

 /*  Cookie Details Table */
 .cookie-table {
    width: 100%;
    margin-top: 20px;
}

.cookie-table th {
    background-color: #007bff;
    color: white;
    text-align: left;
}

.cookie-table td, .cookie-table th {
    padding: 10px;
    border: 1px solid #ddd;
}

.footer {
    margin-top: auto;
    background-color: #343a40;
    color: white;
    padding: 15px 0;
    text-align: center;
}