@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --background-color: white;
    --text-title-color: #053D4E;
    --text-color: #32363B;
    --icon-color: #32363B;
    --icon-menu-color: #707780;
    --menu-color: #707780;

    --text-selected-color: #355CC0;
    --background-selected: #EBF0FF;
    --background-hover: #F7F9FA;

    --border-color: #E6E9ED;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

body{
    width: 100%;
    height: 100vh;
}

header{
    z-index: 200;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 2rem 0.45rem 1.27rem;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    background-color: var(--background-color);
    top: 0;
    left: 0;
}

a {
    text-decoration: none;
}

.yzk{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

.menu-contenedor{
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu{
    width: 1.5rem;
    height: 37%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu div{
    width: 100%;
    height: 0.15rem;
    background-color: var(--menu-color);
    transition: all 0.2s ease;
}

.menu.toggle div:first-child{
    width: 40%;
    transform: rotate(-35deg) translate(-30%,175%);
}
.menu.toggle div:last-child{
    width: 40%;
    transform: rotate(35deg) translate(-30%,-160%);
}

.brand{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem
}

.brand .logo{
    width: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.brand .name{
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-title-color);
}

.der{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
}

.der a{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.der a:hover{
    background-color: var(--background-hover);
}

.der img{
    width: 1.5rem;
    margin: 0.5rem;
}

.der .user{
    width: 2.1rem;
    border-radius: 50%;
}

.sidebar{
    margin-top: 4rem;
    width: 4rem;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 1.1rem 0;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    background-color: var(--background-color);
    transition: width 0.5s ease;
}





.sidebar-footer{
    border-top: 1px solid var(--border-color);
}

.sidebar-footer ul{
    list-style: none;   
}









.sidebar.toggle{
    width: 18.75rem;
}
.sidebar a{
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 0.9rem 0.7rem;
    text-decoration: none;
    margin: 0 0.5rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-color);
}

.sidebar a:hover{
    background-color: var(--background-hover);
}

.sidebar a.selected{
    color: var(--text-selected-color);
    background-color: var(--background-selected);
}

.sidebar a.search{
    padding: 1rem 0.7rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.2rem;
}

.sidebar img{
    width: 1.6rem;
}

main{
    margin-top: 4rem;
    margin-left: 4rem;
    padding: 2rem;
    transition: padding-left 0.5s ease;
}

main.toggle{
    margin-left: 18.75rem;
}

.contenedor01{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cuadros{
    height: 100px;
    flex-basis: 20rem;
}

.cuadros a{
    padding: 0.2rem 0.7rem;
    text-decoration: none;
    margin: 0 0.5rem;
    border-radius: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.contenedor03{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: start;
}


.kuadros{
    height: 100px;
}

.kuadros a{
    padding: 0.2rem 0.7rem;
    text-decoration: none;
    margin: 0 0.5rem;
    border-radius: 0.4rem;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}





.contenedor02{
    width: 100%;
    margin: 1px;
    padding-top: 20px;
    padding-left: 5px;
}

.contenedor04{
    width: 100%;
    margin: 1px;
}

.bloke01{
    max-width: 325px;
}


.linkAzul{
    background: #0B5ED7; 
    color: #fff;
    border: 1px solid #0B5ED7;
}

.linkAmarillo{
    background: #FFCA2C; 
    color: #fff;
    border: 1px solid #FFCA2C;
}

.btn{
    width: 100%;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 1.1rem 1.5rem;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover{
    background-color: #424649;
    color:#F7F9FA;
    transform: scale(1.01);
}





.izkierda{
    width: 100%;
    display: flex;
    justify-content: start;
    padding: 0.45rem 2rem 0.45rem 0.4rem;
    border-bottom: 1px solid var(--border-color);
}






.contenedorTabla {
    border: solid 1px rgba(255, 255, 255, 0.2);
    background: #fff; /*#B225A6;*/
}

table {
    color: var(--text-color);
    font-size: 14px;
    table-layout: fixed;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(to left, #025161, #03A2C0);
    color: #fff;
}

th {
    padding: 20px 15px ;
    font-weight: 700;
    text-transform: uppercase;
}

td {
    padding: 15px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}


tbody tr {
    cursor: pointer;
}

tbody tr:hover {
    background: #a1e0ed;
}




@media (max-width:500px) {
    .der .icons-header{
        display: none;
    }

    .sidebar{
        width: 0;
    }

    main{
        margin-left: 0;
    }

    main.toggle{
        margin-left: 0;
    }

    .menu.toggle div:first-child{
        width: 100%;
        transform: rotate(-45deg) translate(-0.2rem,0.3rem);
    }

    .menu.toggle div:nth-child(2){
        opacity: 0;
    }

    .menu.toggle div:last-child{
        width: 100%;
        transform: rotate(45deg) translate(-0.2rem,-0.3rem);
    }

    .contenedor04{
        margin: 0px;
    }
}