/* --- VZHLED (Barvy, písmo, zaoblení) --- */
.site-msg.information {
    background-color: #8cc63f !important; /* Sytá zelená */
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important; /* Trochu silnější stín pro kontrast */
        opacity: 1 !important; 

}

/* --- TEXT (Větší a tučný) --- */
.site-msg.information .text {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
}

/* --- KŘÍŽEK (Velikost 17px) --- */
.site-msg.information .close {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none !important;
    font-size: 17px !important; /* Velikost 17px */
    
    /* Zarovnání křížku na střed */
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* --- MOBIL - PŘESUNUTÍ NAHORU (50px) --- */
@media (max-width: 768px) {
    .site-msg.information {
        bottom: auto !important; /* Odlepíme ze spodu */
        top: 50px !important;    /* Přilepíme nahoru na 50px */
        
        /* Pro jistotu zopakujeme neprůhlednost i pro mobil */
        opacity: 1 !important;
		left: 10px !important;
  max-width: calc(100% - 20px) !important;
    }
}