<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.alice-container {
    color: white;
    background-color: #060A3D;
    padding: 5%;
    border-radius: 8px;
}
.h2{
    color:white;
}

.alice-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.alice-menu-button {
    align-items:center;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 400px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.alice-menu-button:hover {
    background-color: #0056b3;
}

.alice-content-section {
    display: none;
    margin-top: 20px;
}

.alice-content-section.active {
    display: block;
}

.alice-info-list {
    list-style-type: none;
    padding: 0;
}

.alice-info-list li {
    margin-bottom: 10px;
}

.alice-messages p {
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: white;
}

.alice-stats p {
    background-color: #555;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: white;
}
</pre></body></html>