﻿.privacy-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem; /* klein, aber lesbar */
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    z-index: 1100;
}

.privacy-link:hover {
    text-decoration: underline;
}

body {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Shared/CookieConsent.razor.css */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-banner-text {
    margin: 0;
    flex-grow: 1;
}

.cookie-consent-banner-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-consent-banner button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.cookie-btn-accept {
    background-color: #27ae60; /* Green */
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #2ecc71;
}

.cookie-btn-reject {
    background-color: #f1f1f1; /* Light gray */
    color: #333;
}

.cookie-btn-reject:hover {
    background-color: #e1e1e1;
}