/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/


 .btn-check:checked + .btn-primary {
    background-color: #003C8F;
    border-color: #0a53be;
    color: #fff;
    box-shadow: 0 0 0 0.15rem rgba(10, 83, 190, 0.5);
}
/* Styl podczas focusa (np. po tabulatorze) */
.btn-check:focus + .btn-primary {
    box-shadow: 0 0 0 0.15rem rgba(10, 83, 190, 0.5);
}


/* Styl po najechaniu myszą */
.btn-primary:hover {
    background-color: #003C8F;
    border-color: #0846a2;
    color: #fff;
}


.n-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #002147;
    white-space: nowrap;
}

.navbar .btn-primary {
    background-color: #014789;
    border-color: #014789;
}

.navbar .btn-primary:hover {
    background-color: #002147;
    border-color: #002147;
}






  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
body {
     padding-bottom: 0; /* no bottom padding, footer should be bottom aligned */
     padding-top: 60px;/* now is redefine in JS to fit any title length */
     flex-direction: column; /* article, then footer */
     display: flex; /* flex, to extend the content to full size */
     min-height: 100vh; /* full height, to bottom-align footer */
}
body > article {
    flex: 1; /* the main article should use as much space as possible */
}
  
  
/*FOOTER*/
  footer {
        background-color: #002147;
        color: #fff;
        padding: 1.5rem 0;
    }

    footer a {
        color: #66b2ff;
        text-decoration: underline;
    }

    footer a:hover {
        color: #ffffff;
        text-decoration: none;
    }
.f-a-l{
    text-decoration: none;
    color:white;
}
  .f-a-l:hover{
      color:oklch(90.5% 0.182 98.111);
  }
  
 
