/* Hide the default listmonk logo on both login and admin pages */
.logo img, 
.login-box .logo img,
.login img {
  display: none !important;
}

.logo a::before {
  content: '';
  display: inline-block;
  width: 180px; /* Adjust width to fit your logo */
  height: 45px; /* Adjust height to fit your logo */
  background-image: url('https://mansoft.com.pl/sites/default/files/MANSOFT-Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* Globalna zmiana przycisków na stronach dla użytkowników */
button, 
.button, 
a.button, 
input[type="submit"], 
input[type="button"] {
    background-color: #000000 !important; /* Wpisz swój kolor HEX (np. fioletowy) */
    color: #ffffff !important;            /* Kolor tekstu */
    border-color: #000000 !important;     /* Kolor ramki (jeśli istnieje) */
}

/* Opcjonalnie: efekt po najechaniu myszką (hover) */
button:hover, 
.button:hover, 
a.button:hover, 
input[type="submit"]:hover {
    background-color: #1a1a1a !important; /* Ciemniejszy odcień przy najechaniu */
    border-color: #1a1a1a !important;
}