<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    display: flex;
    flex-direction: column;
    background-color: black;
    margin: 0;
    background-image: linear-gradient(136deg, rgba(7, 67, 147, 0.4), rgba(9, 51, 107, 0));
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    height:100vh;
    padding-bottom: 24px;
}
.blob {
    position: absolute;
    z-index:0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(131, 152, 180, 0.8);

    background: radial-gradient(circle at top left, rgba(83, 163, 255, 0.2), transparent),
    radial-gradient(circle at top right, rgba(0, 255, 255, 0.5), transparent),
    radial-gradient(circle at bottom left, rgba(83, 163, 255, 0.6), transparent),
    radial-gradient(circle at bottom right, #083065, transparent);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
    animation: animate 20s linear infinite;

}
#filter-title{
    display:flex;
    flex-direction: row;
    width:100%;
    justify-content: space-between;
    align-items:center;
}

.title-container{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    flex: 1;
}
.close-button{
    width:16px;
    padding:4px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px  rgba(255, 255, 255, 0.5) solid;
    border-radius:50%;
}

.bold{
    font-weight:700;
}
#header{
    padding-left:80px;
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: rgba(33, 31, 29, 0.4);
    width:calc(100% - 80px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;

}

#container{
    margin:24px 80px;
    display:flex;
    flex-direction:row;
    gap: 24px;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

#filters{
    padding:40px;
    border-radius:40px;
    background-color: rgba(33, 31, 29, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.20);
    align-self: stretch;
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));

    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    display:flex;
    flex-direction: column;
    flex-grow:1;
}

#chart-container {
    z-index: 1;
    align-self: stretch;
    padding:40px;
    border-radius:40px;
    background-color: rgba(33, 31, 29, 0.4);
    width: 50%;
    min-width: 400px;
    height:auto;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));

    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.tooltip {
    position:absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 24px 24px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width:20vw;
    max-width: 35vw;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
}


.show-button {
    width: 40px;
    font-size: 20px;
    font-weight:400;
    color: rgba(6, 80, 166, 0.8);
    border-radius: 50%;
    border: 1px solid rgba(83, 163, 255, 0.8);
    overflow: hidden;
    aspect-ratio:1;
    display:flex;
    align-self:flex-start;
    align-items:center;
    justify-content: center;
}
.tooltip-title {
    font-size: 20px;
    font-weight: 600;
}

.chat-messages-section {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap:wrap;
    width:100%;
    max-height: 20vh;
    overflow: scroll;
}
.chat-container{
    display:flex;
    flex-direction:row;
    gap: 24px;
    align-items: flex-start;
}
a{
    text-decoration:none;
}

.count-container{
    font-size: 14px;
}
.id-chat-name {
    padding: 8px 8px;
    background-color: rgba(39, 142, 255);
    color: white;
    border-radius: 4px;
    width:fit-content;
    font-size:12px;
}

.group-chat-name{
    padding: 8px 8px;
    background-color: white;
    color: rgba(39, 142, 255);
    border-radius: 4px;
    width:fit-content;
    font-size:12px;
}

h3 {
    font-weight: 200;

}
@keyframes animate {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(calc(100vw - 350px), calc(100vh - 350px));
    }
}

.tooltip-expand {
    animation-name: tooltip-expand-animation;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

@keyframes tooltip-expand-animation {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.toggle-container{
    padding: 4px 8px;
    border-radius: 24px;
    display:flex;
    flex-direction: row;
    background-color: rgba(33, 31, 29, 0.4);
    width: min-content;
    height:min-content;
    border: 1px solid rgba(255, 255, 255, 0.20);

    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));

    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);

}

.toggle-button{
    padding: 8px 16px;
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.5);
}

#selected-toggle{
    color:white;
    background-color: rgba(39, 142, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


input[type="text"]{
    padding: 4px 8px;
    border-radius: 24px;

    background-color: rgba(124, 124, 124, 0.7);

    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255,255,255);
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));

    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);

}
#select{
    display: flex;
    gap:8px;

}
#select input{
    width:100%;
}
/* Style the checkbox container */
#chat-checkboxes {
    overflow-y: auto;
    flex: 1;
    max-height: 46vh;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));

}

.checkbox-name{
    display:flex;
    flex-direction: row;
    align-items:center;
    gap: 8px;
}
/* Style the label and checkbox container */
#chat-checkboxes label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

/* Style the checkbox icon */
#chat-checkboxes input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
}

/* Style the checked state of the checkbox */
#chat-checkboxes input[type="checkbox"]:checked {
    background-color: #2196F3;
    border-color: #2196F3;
}

/* Style the label text */
.checkbox-text {
    flex: 1;
}

#deselect-all{
    padding: 8px 8px;
    border-radius: 24px;

    background-color: rgba(124, 124, 124, 0.7);
    margin-top:16px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255,255,255);
    background-image: linear-gradient(136deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0));

    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);

}</pre></body></html>