/* -- Layout: Three Column Responsive -- */
.qls-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px;
}
.qls-column {
    flex: 1;
    min-width: 300px;
    padding: 5px;
    background: transparent;
    text-align: center;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .qls-container {
        flex-direction: column;
    }
}

/* -- Color Backgrounds (also affect text where needed) -- */
.ql-bg-black { background-color: rgba(0, 0, 0, 0.88); color: antiquewhite; }
.ql-bg-white { background-color: rgba(255, 255, 255, 0.88); color: #343434; }
.ql-bg-red { background-color: rgba(139, 0, 0, 0.88); color: antiquewhite; }
.ql-bg-orange { background-color: rgba(204, 102, 0, 0.88); color: #343434;; }
.ql-bg-yellow { background-color: rgba(204, 204, 0, 0.88); color: #343434; }
.ql-bg-green { background-color: rgba(0, 100, 0, 0.88); color: antiquewhite; }
.ql-bg-blue { background-color: rgba(0, 0, 139, 0.88); color: antiquewhite; }
.ql-bg-purple { background-color: rgba(75, 0, 130, 0.88); color: antiquewhite; }
.ql-bg-brown { background-color: rgba(101, 67, 33, 0.88); color: antiquewhite; }

/* -- OMNIMAP: Base32 Button Layout -- */
.qlom-base32-wrap {
    margin: 20px;
    padding: 0;
}
.qlom-base32-fldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 8px 10px 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 24px;
}
.qlom-base32-lgnd {
    display: none;
}
.qlom-base32-each {
    width: 50px;
    height: 50px;
    margin: 1px 2px 8px 2px;
    padding: 0;
    text-align: center;
}
.qlom-base32-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 9px;
    font-family: 'Lato', sans-serif;
    color: inherit;
}
.qlom-base32-link:hover {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.qlom-base32-imag {
    width: 32px;
    height: 32px;
}
.qlom-base32-text {
    font-family: 'Lato', sans-serif;
    margin-top: 1px;
    font-size: 9px;
    text-align: center;
    display: inherit;
    color: inherit;
    text-decoration: none;
}


.show-text { display: inherit; }
.hide-text { display: none; }


