        .edit-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            background: rgba(250, 166, 26, 0.15);
            color: #faa61a;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-left: 8px;
        }

        .edit-badge:hover {
            background: rgba(250, 166, 26, 0.25);
            transform: translateY(-1px);
        }

        .edit-badge svg {
            flex-shrink: 0;
        }

        /* Styles pour les attachments */
        .message-attachments {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .attachment-image,
        .attachment-video {
            max-width: 400px;
            max-height: 300px;
            border-radius: 8px;
            object-fit: cover;
        }

        .attachment-video {
            background: #000;
        }

        .attachment-image {
            cursor: pointer;
            transition: transform 0.2s;
        }

        .attachment-image:hover {
            transform: scale(1.02);
        }

        .attachment-file {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: #1e1f22;
            border-radius: 8px;
            text-decoration: none;
            color: #dbdee1;
            transition: background 0.2s;
        }

        .attachment-file:hover {
            background: #36373d;
        }

        /* Modal overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.2s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: #2f3136;
            border-radius: 8px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s;
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 2px solid #202225;
            background: #36393f;
        }

        .modal-header h2 {
            margin: 0;
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
        }

        .close-btn {
            background: none;
            border: none;
            color: #b9bbbe;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .close-btn:hover {
            background: #f04747;
            color: #fff;
        }

        .modal-body {
            padding: 20px;
            overflow-y: auto;
            max-height: calc(80vh - 80px);
        }

        .edit-info {
            background: #202225;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            color: #b9bbbe;
            line-height: 1.8;
        }

        .edit-info div {
            margin-bottom: 6px;
        }

        .edit-info div:last-child {
            margin-bottom: 0;
        }

        .edit-info strong {
            color: #fff;
        }

        .edits-timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .edit-entry {
            background: #202225;
            padding: 15px;
            border-radius: 6px;
            border-left: 3px solid #5865f2;
            transition: all 0.2s;
        }

        .edit-entry:hover {
            background: #292b2f;
        }

        .edit-entry.original {
            border-left-color: #43b581;
        }

        .edit-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .edit-number {
            color: #5865f2;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .edit-entry.original .edit-number {
            color: #43b581;
        }

        .edit-content {
            color: #dcddde;
            padding: 12px;
            background: #36393f;
            border-radius: 4px;
            white-space: pre-wrap;
            word-break: break-word;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 14px;
            line-height: 1.5;
        }

        .edit-date {
            color: #72767d;
            font-size: 11px;
            font-weight: normal;
        }




        * {
            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;
            min-height: 100vh;
        }

        /* Header */
        header {
            background-color: #1e1f22;
            border-bottom: 1px solid #3f4147;
            padding: 16px 24px;
        }

        .header-content {
            max-width: 896px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #5865f2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .header-text h1 {
            font-size: 18px;
            font-weight: 600;
            color: white;
        }

        .header-text p {
            font-size: 12px;
            color: #949ba4;
        }

        /* Main */
        main {
            max-width: 896px;
            margin: 0 auto;
            padding: 24px;
        }

        /* Search Card */
        .search-card {
            background-color: #2b2d31;
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .search-label {
            font-size: 12px;
            font-weight: 600;
            color: #949ba4;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-label svg {
            width: 16px;
            height: 16px;
        }

        /* Filter Buttons */
        .filters-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .filter-wrapper {
            position: relative;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.15s;
            background-color: #1e1f22;
            color: #dbdee1;
        }

        .filter-btn:hover {
            background-color: #36373d;
        }

        .filter-btn.active {
            background-color: #5865f2;
            color: white;
        }

        .filter-btn svg {
            width: 16px;
            height: 16px;
        }

        .filter-btn .chevron {
            width: 14px;
            height: 14px;
            transition: transform 0.2s;
        }

        .filter-btn.open .chevron {
            transform: rotate(180deg);
        }

        .clear-filter {
            margin-left: 4px;
            padding: 2px;
            border-radius: 50%;
            transition: background-color 0.15s;
            display: none;
            cursor: pointer;
        }

        .clear-filter:hover {
            background-color: #4752c4;
        }

        .clear-filter svg {
            width: 12px;
            height: 12px;
        }

        .clear-filter.show {
            display: inline-flex;
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 4px;
            min-width: 280px;
            background-color: #232428;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
            border: 1px solid #3f4147;
            padding: 8px;
            z-index: 50;
            display: none;
        }

        .dropdown.show {
            display: block;
        }

        .dropdown-section {
            margin-bottom: 8px;
        }

        .dropdown-section:last-child {
            margin-bottom: 0;
        }

        .dropdown-section-title {
            font-size: 11px;
            font-weight: 700;
            color: #949ba4;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 4px 8px;
            margin-bottom: 4px;
        }

        .dropdown-item {
            width: 100%;
            text-align: left;
            padding: 8px 12px;
            font-size: 14px;
            color: #dbdee1;
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.15s;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 4px;
        }

        .dropdown-item:hover {
            background-color: #36373d;
        }

        .dropdown-item.selected {
            background-color: #5865f2;
            color: white;
        }

        .dropdown-item svg {
            width: 16px;
            height: 16px;
            display: none;
        }

        .dropdown-item.selected svg {
            display: block;
        }

        /* Date Input Row */
        .date-input-row {
            display: flex;
            gap: 8px;
            padding: 8px;
        }

        .date-type-select {
            background-color: #1e1f22;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            font-size: 14px;
            color: #dbdee1;
            cursor: pointer;
            outline: none;
            min-width: 100px;
        }

        .date-type-select:focus {
            box-shadow: 0 0 0 2px #5865f2;
        }

        .date-input {
            flex: 1;
            background-color: #1e1f22;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            font-size: 14px;
            color: #dbdee1;
            outline: none;
        }

        .date-input:focus {
            box-shadow: 0 0 0 2px #5865f2;
        }

        .date-input::-webkit-calendar-picker-indicator {
            filter: invert(0.8);
            cursor: pointer;
        }

        .date-apply-btn {
            background-color: #5865f2;
            border: none;
            border-radius: 4px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: white;
            cursor: pointer;
            transition: background-color 0.15s;
        }

        .date-apply-btn:hover {
            background-color: #4752c4;
        }

        .date-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 8px;
            border-top: 1px solid #3f4147;
            margin-top: 8px;
        }

        .date-preset-btn {
            background-color: #1e1f22;
            border: none;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 12px;
            color: #dbdee1;
            cursor: pointer;
            transition: background-color 0.15s;
        }

        .date-preset-btn:hover {
            background-color: #36373d;
        }

        .date-preset-btn.active {
            background-color: #5865f2;
            color: white;
        }

        /* Server Filter Specific */
        .server-dropdown {
            max-height: 300px;
            overflow-y: auto;
        }

        .server-dropdown::-webkit-scrollbar {
            width: 8px;
        }

        .server-dropdown::-webkit-scrollbar-track {
            background: transparent;
        }

        .server-dropdown::-webkit-scrollbar-thumb {
            background-color: #1e1f22;
            border-radius: 4px;
        }

        .server-list-loading {
            padding: 16px;
            text-align: center;
            color: #949ba4;
            font-size: 14px;
        }

        .server-search-input {
            width: 100%;
            background-color: #1e1f22;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            font-size: 14px;
            color: #dbdee1;
            outline: none;
            margin-bottom: 8px;
        }

        .server-search-input:focus {
            box-shadow: 0 0 0 2px #5865f2;
        }

        .server-search-input::placeholder {
            color: #949ba4;
        }

        /* Clear All Filters */
        .clear-all-btn {
            display: none;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            background: transparent;
            color: #ed4245;
            transition: background-color 0.15s;
        }

        .clear-all-btn:hover {
            background-color: rgba(237, 66, 69, 0.1);
        }

        .clear-all-btn.show {
            display: flex;
        }

        .clear-all-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Active Filters Display */
        .active-filters {
            display: none;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-size: 12px;
            color: #949ba4;
            flex-wrap: wrap;
        }

        .active-filters.show {
            display: flex;
        }

        .active-filters svg {
            width: 14px;
            height: 14px;
        }

        .filter-tag {
            background-color: rgba(88, 101, 242, 0.2);
            color: #5865f2;
            padding: 4px 10px;
            border-radius: 4px;
            display: none;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .filter-tag.show {
            display: inline-flex;
        }

        .filter-tag-remove {
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.15s;
        }

        .filter-tag-remove:hover {
            opacity: 1;
        }

        .filter-tag-remove svg {
            width: 12px;
            height: 12px;
        }

        /* Search Form */
        .search-form {
            display: flex;
            gap: 12px;
        }

        .input-wrapper {
            flex: 1;
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #949ba4;
            pointer-events: none;
        }

        .input-icon svg {
            width: 20px;
            height: 20px;
        }

        input[type="text"] {
            width: 100%;
            background-color: #1e1f22;
            border: none;
            border-radius: 6px;
            padding: 12px 16px 12px 40px;
            font-size: 16px;
            color: #dbdee1;
            outline: none;
            transition: box-shadow 0.2s;
        }

        input[type="text"]::placeholder {
            color: #949ba4;
        }

        input[type="text"]:focus {
            box-shadow: 0 0 0 2px #5865f2;
        }

        .search-btn {
            background-color: #5865f2;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.15s;
        }

        .search-btn:hover {
            background-color: #4752c4;
        }

        .search-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Results */
        #result {
            min-height: 200px;
        }

        /* Initial State */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 64px 0;
            text-align: center;
        }

        .empty-state-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #232428;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .empty-state-icon svg {
            width: 40px;
            height: 40px;
            color: #4e5058;
        }

        .empty-state-title {
            color: #949ba4;
            font-size: 18px;
        }

        .empty-state-subtitle {
            color: #4e5058;
            font-size: 14px;
            margin-top: 4px;
        }

        /* Loading */
        .loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 0;
        }

        .spinner {
            width: 32px;
            height: 32px;
            border: 2px solid #5865f2;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading span {
            margin-left: 12px;
            color: #949ba4;
        }

        /* User Card */
        .user-card {
            background-color: #232428;
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .user-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.3);
        }

        .user-avatar-placeholder {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #5865f2;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            font-weight: 700;
        }

        .user-details h3 {
            font-size: 20px;
            font-weight: 600;
            color: white;
        }

        .user-details .user-id {
            font-size: 14px;
            color: #949ba4;
        }

        .user-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 500;
            background-color: rgba(87, 242, 135, 0.2);
            color: #57f287;
            margin-top: 8px;
        }

        .user-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #57f287;
            margin-right: 6px;
        }

        /* User Card Actions */
        .user-card-actions {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #3f4147;
        }

        .profile-photos-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            background-color: #5865f2;
            color: white;
            transition: background-color 0.15s, transform 0.1s;
        }

        .profile-photos-btn:hover {
            background-color: #4752c4;
        }

        .profile-photos-btn:active {
            transform: scale(0.97);
        }

        /* Profile Photos Modal */
        .pp-modal {
            max-width: 560px;
        }

        .pp-subtitle {
            font-size: 13px;
            color: #949ba4;
            margin-bottom: 16px;
        }

        .pp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .pp-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background-color: #1e1f22;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            aspect-ratio: 1;
        }

        .pp-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
        }

        .pp-item.active {
            box-shadow: 0 0 0 2px #57f287;
        }

        .pp-item:hover.active {
            box-shadow: 0 0 0 2px #57f287, 0 6px 16px rgba(0, 0, 0, 0.5);
        }

        .pp-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .pp-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 12px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .pp-item-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }

        .pp-item-username {
            color: white;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pp-item-badge {
            display: inline-block;
            background-color: #57f287;
            color: #1e1f22;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            width: fit-content;
        }

        .pp-item-dl {
            color: white;
            opacity: 0;
            transition: opacity 0.2s;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(88, 101, 242, 0.8);
        }

        .pp-item:hover .pp-item-dl {
            opacity: 1;
        }

        .pp-item-date {
            position: absolute;
            top: 6px;
            right: 6px;
            background: rgba(0, 0, 0, 0.7);
            color: #b9bbbe;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .pp-item:hover .pp-item-date {
            opacity: 1;
        }

        .profile-photos-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 40px 0;
            color: #949ba4;
            font-size: 13px;
        }

        .spinner-small {
            width: 16px;
            height: 16px;
            border: 2px solid #5865f2;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .profile-photos-empty {
            text-align: center;
            padding: 40px 0;
            color: #4e5058;
            font-size: 13px;
        }

        /* Messages Header */
        .messages-header {
            font-size: 12px;
            font-weight: 600;
            color: #949ba4;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0 8px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .messages-count {
            background-color: #5865f2;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 11px;
        }

        /* Message Card */
        .message-card {
            background-color: #2b2d31;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 8px;
            transition: background-color 0.15s;
        }

        .message-card:hover {
            background-color: #36373d;
        }

        .message-card.filtered-out {
            display: none;
        }

        .message-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .message-time {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            color: #949ba4;
        }

        .message-time svg {
            width: 14px;
            height: 14px;
            margin-right: 4px;
        }

        .message-separator {
            color: #4e5058;
        }

        .message-server {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
            color: #5865f2;
        }

        .channel-server {
            display: inline-flex;
            align-items: center;
            font-size: 12px;
            font-weight: 500;
            color: white;
        }

        .message-server svg {
            width: 14px;
            height: 14px;
            margin-right: 4px;
        }

        .message-content {
            background-color: #1e1f22;
            border-radius: 6px;
            padding: 12px;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 14px;
            line-height: 1.6;
            color: #dbdee1;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .message-content.empty {
            color: #949ba4;
            font-style: italic;
        }

        .message-id {
            font-size: 12px;
            color: #4e5058;
            margin-top: 8px;
            transition: color 0.15s;
        }

        .message-card:hover .message-id {
            color: #949ba4;
        }

        /* Error State */
        .error-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 0;
            text-align: center;
        }

        .error-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: rgba(237, 66, 69, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .error-icon svg {
            width: 32px;
            height: 32px;
            color: #ed4245;
        }

        .error-title {
            color: #ed4245;
            font-weight: 500;
        }

        .error-subtitle {
            color: #949ba4;
            font-size: 14px;
            margin-top: 4px;
        }

        /* No Messages State */
        .no-messages-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: #4e5058;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .no-messages-icon svg {
            width: 32px;
            height: 32px;
            color: #949ba4;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 24px 0;
            flex-wrap: wrap;
        }

        .pagination-btn {
            background-color: #1e1f22;
            color: #dbdee1;
            border: none;
            border-radius: 6px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .pagination-btn:hover:not(:disabled) {
            background-color: #36373d;
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-btn svg {
            width: 16px;
            height: 16px;
        }

        .page-numbers {
            display: flex;
            gap: 4px;
        }

        .page-number {
            background-color: #1e1f22;
            color: #dbdee1;
            border: none;
            border-radius: 4px;
            padding: 8px 12px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.15s;
            min-width: 36px;
        }

        .page-number:hover:not(.active) {
            background-color: #36373d;
        }

        .page-number.active {
            background-color: #5865f2;
            color: white;
        }

        .page-ellipsis {
            color: #949ba4;
            padding: 8px 6px;
            font-size: 14px;
        }

        .pagination-info {
            color: #949ba4;
            font-size: 13px;
            padding: 0 12px;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .search-form {
                flex-direction: column;
            }

            .search-btn {
                justify-content: center;
            }

            .filters-container {
                flex-direction: column;
            }

            .filter-wrapper {
                width: 100%;
            }

            .filter-btn {
                width: 100%;
                justify-content: center;
            }

            .dropdown {
                width: 100%;
                min-width: unset;
            }

            .date-input-row {
                flex-direction: column;
            }
        }

        /* Voice Modal Styles (Discord-style like profile photos modal) */
        .voice-modal {
            max-width: 560px;
        }

        .voice-stats {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .voice-stat {
            flex: 1;
            background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
            border-radius: 8px;
            padding: 16px;
            text-align: center;
        }

        .voice-stat-value {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: white;
        }

        .voice-stat-label {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .voice-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 400px;
            overflow-y: auto;
        }

        .voice-list::-webkit-scrollbar {
            width: 8px;
        }

        .voice-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .voice-list::-webkit-scrollbar-thumb {
            background-color: #1e1f22;
            border-radius: 4px;
        }

        .voice-card {
            background-color: #1e1f22;
            border-radius: 8px;
            padding: 14px;
            border-left: 3px solid #5865f2;
            transition: all 0.2s;
        }

        .voice-card:hover {
            background-color: #292b2f;
            transform: translateX(3px);
        }

        .voice-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .voice-guild {
            font-weight: 600;
            color: #5865f2;
            font-size: 14px;
        }

        .voice-duration {
            background: rgba(87, 242, 135, 0.15);
            color: #57f287;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .voice-channel {
            color: #dcddde;
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .voice-dates {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            color: #72767d;
        }

        .voice-dates span:nth-child(2) {
            color: #5865f2;
        }

        .loading-state {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 40px 0;
            color: #949ba4;
            font-size: 13px;
        }