.gv-sjednice-widget{
    display:grid;
    grid-template-columns: 260px 1fr;
    gap:40px;
    max-width:1200;
    margin:auto;
    padding: 2em;
    background-color: #EEE;
}

/* TABOVI (lijevo) */

.gv-tabs{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.gv-tab{
    text-align:left;
    padding:12px 16px;
    border:2px solid #1e73be;
    background:white;
    color:#1e73be;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
    transition:0.25s;
}

.gv-tab:hover{
    background:#1e73be;
    color:white;
}

.gv-tab.active{
    background:#1e73be;
    color:white;
}


/* DESNI DIO */

.gv-tab-content{
    display:none;
}

.gv-tab-content.active{
    display:block;
}


/* SJEDNICE */

.gv-sjednica{
    padding:1em;
    border-bottom:1px solid #eee;
}

.gv-date{
    font-size:14px;
    color:#777;
    display:block;
    margin-bottom:4px;
}

.gv-sjednica h3{
    margin:0 0 6px 0;
    font-size:18px;
    color: #222;
}

.gv-readmore{
    font-size:14px;
    font-weight:600;
    color:#1e73be;
    text-decoration:none;
}

.gv-readmore:hover{
    text-decoration:underline;
}


/* MOBILE */

@media (max-width:900px){

    .gv-sjednice-widget{
        grid-template-columns:1fr;
    }

    .gv-tabs{
        flex-direction:row;
        flex-wrap:wrap;
    }
}