@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=latin-ext');

/* Globalne ustawienia */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #343a40;
    margin: 0;
    padding: 0;
	padding-top: 70px; /* Dodaj margines odpowiadający wysokości menu (np. 70px) */
}

/* Nagłówki */
h1, h2, h3, h4, h5, h6 {
    color: #343a40;
    font-weight: 600;
}

/* Dostosowanie kontenera */
.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Nawigacja */
.navbar {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

#compareButton {
  position: fixed 
  bottom: 20px 
  right: 20px 
  z-index: 1000 
  
}


/* Tabela - dodatkowe style dla lepszej czytelności */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Przycisk akcji */
.btn-info, .btn-warning {
    margin-right: 5px;
}

/* Stopka */
.footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Responsywność - drobne dostosowania dla urządzeń mobilnych */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    .table-responsive {
        overflow-x: auto;
    }
}
