<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    font-family: "MyFlutterApp", sans-serif;
    background-color: #2c2c2c; /* CustomColors.mainColor equivalent */
}

.container {
    margin-top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* CustomColors.blackTextColor equivalent */
    border-radius: 20px 20px 0 0;
    padding: 16px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo {
    height: 26px;
    width: 96px;
}

button {
    background: none;
    border: none;
    color: white;
    font-family: "MyFlutterApp", sans-serif;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.content {
    color: white;
    overflow-y: auto;
    height: calc(100vh - 60px); /* Adjust height for content overflow */
}

.bold {
    font-weight: bold;
}
</pre></body></html>