body {
    background: repeating-conic-gradient(
        from 45deg,
        rgb(20, 20, 50) 0% 25%,
        rgb(50, 50, 80) 0% 50%
    );
    background-size: 4px 4px;
}

#messages {
    & > li {
        padding: 0;
        margin: 0;
    }

    details {
        summary i:last-child {
            transition: transform 0.2s ease;
        }

        &[open] summary i:last-child {
            transform: rotate(180deg);
        }

        .max {
            word-break: break-word;
            white-space: normal !important;
        }
    }
}
