html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/*-------------------------*/

/* Ustawienie tła i kolorów tekstu dla całej strony */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Nawigacja */
.navbar {
    background-color: #1e1e1e !important;
    border-bottom: 1px solid #444;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: white !important;
}

    .navbar-nav .nav-link:hover {
        color: #ffcc00 !important;
    }

/* Menu rozwijane */
.dropdown-menu {
    background-color: #333 !important;
    border: 1px solid #444;
}

.dropdown-item {
    color: white !important;
}

    .dropdown-item:hover {
        background-color: #555 !important;
        color: #ffcc00 !important;
    }

/* Nagłówki */
/*h1, h2, h3, h4, h5, h6 {
    color: #ffcc00;
}*/

/* Linki */
a {
    color: #66ccff;
}

    a:hover {
        color: #ffcc00;
    }

/* Przycisk */
button {
    background-color: #333;
    color: white;
    border: 1px solid #ffcc00;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 5px;
}

    button:hover {
        background-color: #ffcc00;
        color: black;
    }

/* Dodatkowe poprawki dla formularzy */
input, textarea, select {
    background-color: #222;
    color: white;
    border: 1px solid #ffcc00;
    padding: 5px;
}

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #ffcc00;
        box-shadow: 0 0 5px #ffcc00;
    }
