/* Põhifond ja stiilid */
html, body {
    font-family: 'Mulish', sans-serif;
    font-weight: 200; /* Tavakaal */
    margin: 0;
    padding: 0;
    height: 100%; /* Tagab, et kõrgus algab kogu lehe ulatuses */
    background-color: white;
}


/* H1 ja H2 kasutavad paksu fonti */
h1, h2 {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    margin: 5px;
}


div#container {
    width: 100%;
    height: 100%; /* Täidab kogu lehe */
    display: flex;
    flex-direction: column;
    position: fixed; /* Konteiner jääb nähtavaks ka skrollides */
}

div.page_title {
    width: 100%;
    color: #6d6d6d;
    padding: 10px 30px;
    height: 55px;
    box-sizing: border-box;
}

div#content {
    display: flex; /* Horisontaalne paigutus vasaku ja peamise konteineri jaoks */
    flex-grow: 1; /* Võtab ülejäänud saadaval oleva ruumi vertikaalselt */
    overflow: hidden; /* Väldime, et content keriks üle */
}

div#left-container {
    min-width: 300px; /* Jäik miinimumlaius vasakule konteinerile */
    padding: 10px 30px;
    box-sizing: border-box;
}

div#main-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 30px;
    box-sizing: border-box;
    column-width: 250px;
    /* column-gap: 15px; */
}

footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    height: 71px;
    border-top: 1px solid #b1b1b1;
    box-sizing: border-box;
    margin-top: auto; /* Lükatakse kõige alla */
}
.thumbnail {
    display: inline-block;
    vertical-align: middle;
    padding: 3px;
}
ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
}
li {
    padding: 2px 5px;
}
#left-container a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
.pagination a {
    width: 25px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    padding: 3px 5px;
}

/* Õhuke tekst */
.light-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 200; /* Õhuke tekst */
}

/* Showroom stiilide lisamine */
#showroom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#showroom_title h1 {
    font-weight: 600;
}

#showroom_img img {
    max-width: 100%;
    height: auto;
}

#showroom_data p {
    font-size: 1.2em;
}

#showroom_close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    cursor: pointer;
    color: #fff;
}