html, body {
    cursor: url(""), default;
    /* just change the cursor.ico path to your location */
}



/* Estilo Discord */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #313338;
            color: #dbdee1;
            overflow-x: hidden;
        }

        .discord-container {
            display: flex;
            height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 240px;
            background-color: #2b2d31;
            display: flex;
            flex-direction: column;
        }

        .server-header {
            padding: 12px 16px;
            border-bottom: 1px solid #1e1f22;
            font-weight: 600;
            font-size: 16px;
            color: #f2f3f5;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .server-header:hover {
            background-color: #35373c;
        }

        .channels {
            flex: 1;
            overflow-y: auto;
            padding: 8px;
        }

        .channel-category {
            color: #949ba4;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 8px 8px 4px;
            letter-spacing: 0.5px;
        }

        .channel {
            display: flex;
            align-items: center;
            padding: 6px 8px;
            margin: 1px 0;
            border-radius: 4px;
            color: #949ba4;
            cursor: pointer;
            transition: all 0.2s;
        }

        .channel:hover {
            background-color: #35373c;
            color: #dbdee1;
        }

        .channel.active {
            background-color: #404249;
            color: #f2f3f5;
        }

        .channel-icon {
            margin-right: 8px;
            font-size: 18px;
        }

        /* Chat Area */
        .chat-area {
            flex: 1;
            display: flex;
            flex-direction: column;
            background-color: #313338;
        }

        .chat-header {
            height: 48px;
            padding: 0 16px;
            border-bottom: 1px solid #26272b;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: #f2f3f5;
        }

        .chat-header-left {
            display: flex;
            align-items: center;
        }

        .chat-header-left::before {
            content: "#";
            color: #80848e;
            margin-right: 8px;
            font-size: 20px;
        }

        .header-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .header-icon-button {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b5bac1;
            cursor: pointer;
            transition: color 0.2s;
            text-decoration: none;
        }

        .header-icon-button:hover {
            color: #dbdee1;
        }

        .header-icon-button svg {
            width: 24px;
            height: 24px;
        }

        .exit-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 4px;
            color: #dbdee1;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            background-color: #4e5058;
            border: none;
        }

        .exit-button:hover {
            background-color: #ed4245;
            color: #ffffff;
        }

        .exit-button svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .messages-container {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 16px 0;
            color: #949ba4;
            font-size: 12px;
            font-weight: 600;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #3f4147;
        }

        .divider-content {
            padding: 0 16px;
        }

        .message-group {
            margin-bottom: 16px;
        }

        .message {
            display: flex;
            padding: 2px 0;
            position: relative;
        }

        .message:hover {
            background-color: #2e3035;
        }

        .message-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 16px;
            flex-shrink: 0;
            margin-top: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .message.continuation .message-avatar {
            visibility: hidden;
        }

        /* Avatar images */
        .user-ash .message-avatar {
            background-image: url(img/vencível.jpg);
        }


        .user-kenda .message-avatar {
            background-image: url('img/kenda.jpg');
        }

        .user-jeffrey .message-avatar {
            background-image: url('img/jeffrey.jpg');
        }
        

        .user-jellie .message-avatar {
            background-image: url('img/jellie.png');
        }
        
        .user-miska .message-avatar {
            background-image: url('img/miska\ icon.jpg');
        }

        .user-ashley .message-avatar {
            background-image: url('img/ashley.jpg');
        }

        .message-content {
            flex: 1;
            min-width: 0;
        }

        .message-header {
            display: flex;
            align-items: baseline;
            margin-bottom: 2px;
        }

        .message.continuation .message-header {
            display: none;
        }

        .username {
            font-weight: 500;
            color: #f2f3f5;
            margin-right: 8px;
            cursor: pointer;
        }

        .username:hover {
            text-decoration: underline;
        }

        .timestamp {
            font-size: 12px;
            color: #949ba4;
        }

        .message-text {
            color: #dbdee1;
            word-wrap: break-word;
            line-height: 1.375rem;
        }

        .message-image,
        .message-video {
            max-width: 400px;
            max-height: 300px;
            border-radius: 4px;
            margin-top: 4px;
            cursor: pointer;
        }

        .mention {
            background-color: rgba(88, 101, 242, 0.3);
            color: #c9cdfb;
            padding: 0 2px;
            border-radius: 3px;
            font-weight: 500;
            cursor: pointer;
        }

        .mention:hover {
            background-color: rgba(88, 101, 242, 0.5);
        }

        /* User colors */
        .user-ash .username { color: #2778e2; }
        .user-kenda .username { color: #16c710; }
        .user-jeffrey .username { color: #62bece; }
        .user-jellie .username { color: #bf6ae0; }
        .user-miska .username { color: #000000; }
        .user-ashley .username { color: #13ccad; }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 16px;
        }

        ::-webkit-scrollbar-track {
            background-color: #2b2d31;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #1a1b1e;
            border: 4px solid #2b2d31;
            border-radius: 8px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #141517;
        }

        @media (max-width: 768px) {
            .sidebar {
                position: fixed;
                left: -240px;
                transition: left 0.3s;
                z-index: 100;
                height: 100vh;
            }

            .sidebar.open {
                left: 0;
            }

            .message-image,
            .message-video {
                max-width: 280px;
            }
        }