@charset "UTF-8";
body {
  background-color: #FFF8F1;
  color: #162c42; }

.sidebar {
  background-color: #ffffff;
  min-height: 100vh;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05); }

.sidebar a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: #162c42;
  text-decoration: none;
  background-color: #ffffff;
  transition: background-color 0.5s ease; }

.border-primary {
  border-color: #0e1b29 !important; }

.sidebar a:hover {
  background-color: #C1E3DD;
  border-radius: 8px; }

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #162c42;
  margin-bottom: 1rem; }

.navbar-light {
  background-color: #FFF8F1;
  border-bottom: 1px solid #162c42;
  display: flex;
  justify-content: center;
  align-items: center; }

.navbar-toggler-icon {
  border-radius: 8px;
  width: 40px;
  height: 40px; }

.nav-link {
  color: #162c42;
  text-align: center;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease; }

.nav-link:hover {
  background-color: #C1E3DD;
  border-radius: 8px; }

main {
  background-color: #FFF8F1;
  padding: 2rem; }

h1 {
  color: #162c42;
  font-size: 2rem;
  font-weight: bold; }

p {
  color: #162c42; }

.btn-primary {
  background-color: #162c42;
  color: #FFF8F1;
  border: none;
  transition: all 0.5s ease; }

.btn-primary:hover {
  background-color: #FBC8A2;
  color: #162c42; }

.card {
  border-radius: 15px;
  /* Zaokrąglone rogi */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Delikatny cień */
  overflow: hidden;
  /* Zabezpieczenie przed wychodzeniem treści poza zaokrąglenia */ }

.card-body {
  padding: 20px; }

.card-title {
  font-size: 1.25rem;
  font-weight: bold; }

.card-text {
  color: #555; }

.table {
  color: #162c42;
  border-color: #162c42; }

.table thead {
  background-color: #162c42 !important;
  color: #ffffff !important; }

.thead-table {
  background-color: #162c42 !important;
  color: #ffffff !important; }

.table tbody tr:hover {
  background-color: #C1E3DD; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #FFF8F1; }

.table-striped tbody tr:nth-of-type(even) {
  background-color: #ffffff; }

 