body {
    font-family: Calibri, sans-serif;
    margin: 10px;
    color: rgba(110, 100, 100);
  
}
/*
body {
    font-family: "Lato", sans-serif;
}*/

header {
    background-color: #cdc9c67c;
    color: #fff;
    padding: 2px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    /* Zapewnia, że nagłówek będzie na wierzchu */
}
.container {
  display: flex;
  margin-top: 3.4em; /* Ustala odstęp od góry strony, aby nagłówek nie zasłaniał zawartości */
}

.sidebar {
    height: 100%;
    width: 250px;
    margin-top: 3.4em; /* Ustala odstęp od góry strony, aby nagłówek nie zasłaniał zawartości */

    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #e4ded137;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 4em;
}

.menu {
  width: 25%;
  background-color: #f2f2f2;
  padding: 20px;
  position: fixed;
  top: 80px; /* Ustala odstęp od góry strony, aby nie zasłaniał nagłówka */
  bottom: 0;
  overflow-y: auto;
}

.menu ul {
  list-style-type: none;
  padding: 0;
}

.menu ul li {
  margin-bottom: 10px;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.menu ul li a:hover {
  color: #555;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #615e5c74;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #615e5cc9
}

#main {
    transition: margin-left 0.5s;
    padding: 16px;
    margin-left: 250px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }
    .sidebar a {
        font-size: 18px;
    }
}








/*-----------------------------------------------------------------------------*/

table {
    width: 100%;
    border-collapse: collapse;
    border: none; /* Usunięcie krawędzi tabeli */
}
td {
    padding: 8px;
    text-align: left;
}
.left-column {
    width: 10%;
    min-width: 50px;
}
.middle-column {
    width: 35em;

}
img {
    max-width: 3.4em;
    max-height: 3.4em;
    height: auto;
}

.skill-item {
    margin-top: 0.2em; 
    margin-bottom: 0.2em;
}
/* Styl dla separatora */
.separator {
    border: none; /* Usunięcie domyślnego obramowania */
    height: 1px; /* Grubość linii */
    background-color: #ccc; /* Kolor linii */
    margin: 20px 0; /* Marginesy górny i dolny */
}

.btn {
    background-color: #615e5c74;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    white-space: nowrap; 
}

/* Darker background on mouse-over */
.btn:hover {
    background-color: #615e5cc9;
}

