

/* --- HTML --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 101vh;
}


.toolbar {
    height: 35px;
    background-color: transparent;
    color: white;
    text-align: right;
    line-height: 35px;
}

.navbar-container {
    background-color: transparent; /* Matches the other sections */
    padding: 0px;
    border-radius: 15px;
    margin: 0px;
    text-align: center;
        
}

.mynavbarthing {height:55px; line-height:55px;}

.navbar {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap:8px;
}

/* Hide radio buttons */
input[type="radio"] {
    display: none;
}

.qls-emojis { position:absolute; left:20px;  }


/* --- TABS --- */
.tablink {
    flex: 1;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #343434;
    transition: background-color 0.3s, color 0.3s;
    line-height: 30px;
    cursor: pointer;
    font-size:10px; 
    border-radius: 15px;
    text-align: center;
}

/* Hover effect */
.tablink:hover {
    background-color: #666;
}
/* Highlight active tab */
input[type="radio"]:checked + .tablink {
    background-color: white;
    color: #444;
    font-weight: bold;
}




/* --- CONTENTFRAME --- */
.content {
    flex: 1;
    display: flex;
    background-color: transparent;
    overflow: auto;
}
iframe {
    width: 100%;
    height: 101%;
    min-height: 1050px;
    border: none;
}




    .content-block {
        background-color: rgba(52, 52, 52, 0.5);
        border-radius: 15px;
        padding: 20px;
        color: white;
    }





/* --- FOOTER --- */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 10px;
    height: auto;
    background-color: rgba(52, 52, 52, 0.66);
    color: white;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
}

.footer div {
    margin: 0 10px; /* Adds 10px space between sections */
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
    }

    .footer div {
        margin: 2px 0;
    }
}



