@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&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');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Nunito", serif;
    background-color: #0d0d0d;
}

.tab-bar {
    font-family: "Nunito", serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #141414;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
}

.tab-bar .buttons {
    display: flex;
    gap: 10px;
}

.tab-bar .buttons button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.tab-bar .buttons button:hover {
    color: #ccc;
}

.iframe-container {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.left-image {
    width: 40px;
    height: 40px;
    margin-left: 10px; 
    margin-right: 10px; 
    border-radius: 100%;
    vertical-align: middle; 
}

.tab-bar h3 {
    display: inline-flex;
    align-items: center; 
}