
.logo {
    width: 100%;
    height: 6rem;
    position: fixed;
    z-index: 1000;
}

.chat-shell {
    position: relative;
}

.app-container {
    margin-top: 4rem;
}

.settings-shortcut {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid hsl(0, 0%, 20%);
    color: inherit;
    transition: transform 0.2s ease, border-color 0.15s ease, color 0.15s ease;
}

.settings-shortcut:hover {
    transform: rotate(45deg);
    border-color: hsl(228, 85%, 63%);
    color: hsl(228, 85%, 63%);
}

.settings-shortcut svg {
    width: 1.3rem;
    height: 1.3rem;
}

.channels {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.channels:not(:last-child) {
    margin-bottom: 1rem;
}

.chat-feed {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 75vh;
    overflow-y: auto;
    border-radius: 0.75rem;
    border: 1px solid hsl(0, 0%, 20%);
}

.chat-message {
    display: flex;
    justify-content: space-between;
}


.chat-message .message-content {
    display: flex;
    gap: 0.5rem;
}

.chat-message .actions {
    display: none;
}

.chat-message:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.chat-message:hover .actions {
    display: block;
}

.profile-pic-container {
    display: flex;
    align-items: center;

    .profile-pic {
        width: 40px;
        height: 40px;
        border-radius: 100vh;
        object-fit: cover;
    }
}

.chat-message-text {
    margin: 0;
    word-break: break-word;
}

.chat-message .message-content > .grouped-content {
    margin-left: calc(40px + 0.5rem);
}

.chat-message-text p:last-child {
    margin-bottom: 0;
}

.reply-quote {
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
    color: hsl(0, 0%, 60%);
    font-size: 0.8rem;
    border-left: 2px solid hsl(0, 0%, 35%);
    padding-left: 0.5rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.reply-quote-author {
    font-weight: 600;
    color: hsl(0, 0%, 75%);
    flex-shrink: 0;
}

.reply-quote-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-input {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reply-to-label {
    background-color: hsl(0, 0%, 20%);
    border-radius: 6px;
    padding-left: 0.5rem;
}

.message-input {
    display: flex;
}

.chat-input .input,
.chat-input .button {
    height: 2.75em;
}

#is-typing-container {
    height: 0.75rem;
}

.typing {
    font-style: italic;
    color: hsl(0, 0%, 48%);
    font-size: 0.85rem;
}

div[data-online=true] {
    color: #138f23;
}