/* Ogólne ustawienia strony */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    /* Tekst poza tabelą */
    color: white; 
    text-shadow: 1px 1px 2px black; 
    text-align: center;

    /* Tło PNG */
    background-image: url('images/tlo.jpg');
    background-size: cover;        
    background-repeat: no-repeat;  
    background-position: center;   
    background-attachment: fixed;  
}

/* Nagłówki */
h2 {
    color: white;
    text-shadow: 1px 1px 2px black;
}

/* Linki */
a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #ffcc00;
}

/* Tabela */
table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.9); /* lekko przezroczyste białe tło */
    color: black; /* tekst w tabeli ciemny */
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

th {
    background-color: rgba(51, 51, 51, 0.9); /* ciemniejsze nagłówki tabeli */
    color: white;
}

/* Kolory statusów w tabeli */
.green {
    background-color: #4CAF50;
    color: white;
}

.red {
    background-color: #f44336;
    color: white;
}

.orange {
    background-color: #ff9800;
    color: white;
}

/* Box logowania */
.login-box {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    background-color: rgba(80, 80, 80, 0.95); /* lekko przezroczyste białe tło */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Formularze */
input {
    width: 90%;
    padding: 8px;
    margin: 5px 0;
}

button {
    padding: 10px 20px;
    cursor: pointer;
}

/* Komunikaty błędów */
.error {
    color: red;
    font-weight: bold;
}
