/* --- COOKIEHINT ANPASSUNG: JUSTBEST-OH LOOK --- */

#redim-cookiehint {
    padding: 30px !important;
    box-sizing: border-box;
    font-size: 15px;
    
    /* SCHWEBENDE CARD OPTIK */
    width: 600px !important;
    max-width: 95% !important;
    position: fixed !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    
    /* SCHATTEN & ABGERUNDETE ECKEN (Passend zum Card-Design) */
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    border-radius: 15px !important; 
    
    /* HINTERGRUND IN LOGO-BLAU */
    background-color: #004B67 !important; 
    border: 4px solid #ffffff !important; /* Weißer Rand für klare Abgrenzung */
    text-align: center;
    z-index: 999999 !important;
}

/* WICHTIG: Textfarbe auf Weiß für Lesbarkeit */
#redim-cookiehint .cookiecontent, 
#redim-cookiehint .cookiehead,
#redim-cookiehint p,
#redim-cookiehint div {
    color: #ffffff !important; /* Weißer Text auf blauem Grund */
}

#redim-cookiehint .cookiecontent {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

#redim-cookiehint a {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: bold;
}

#redim-cookiehint a:hover {
    color: #D40037 !important; /* Rot bei Hover */
}

/* BUTTONS ANPASSEN */
#redim-cookiehint .cookiebuttons .btn {
    padding: 10px 25px !important;
    border-radius: 8px !important;
    color: #ffffff !important; /* Weißer Text auf Rot */
    background-color: #D40037 !important; /* Logo-Rot */
    font-size: 14px;
    font-weight: bold;
    margin: 8px !important;
    border: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

/* Hover-Effekt für die Buttons */
#redim-cookiehint .cookiebuttons .btn:hover { 
    background-color: #ffffff !important; 
    color: #004B67 !important; /* Blau auf Weiß bei Hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Overlay-Hintergrund (Abdunkelung der Seite) */
#redim-cookiehint-modal {
    background-color: rgba(0, 75, 103, 0.7) !important; /* Blau transparent statt Schwarz */
}