html {
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    box-sizing: border-box;
    font-family: 'JetBrains Mono', monospace;
}

.stat-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.15);
}

.message-card {
    background: #1f2937;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.message-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}

.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.badge-new {
    background: #10b981;
    color: white;
}

.badge-pending {
    background: #f59e0b;
    color: white;
}

.badge-resolved {
    background: #6b7280;
    color: white;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    background: #1f2937;
    color: #9ca3af;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

.filter-btn.active {
    background: #06b6d4;
    border-color: #06b6d4;
    color: white;
}

.action-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.action-btn-primary {
    background: #06b6d4;
    color: white;
}

.action-btn-primary:hover {
    background: #0891b2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.action-btn-danger {
    background: #ef4444;
    color: white;
}

.action-btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.search-input {
    background: #1f2937;
    border: 1px solid #374151;
    color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    max-width: 48rem;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


